Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
The progress can't go any higher than 100.
e.g.: if progress is 70 and user gains 50 new points, total would be 120. 100 are removed to increase rank and user ends up with 20 points.
Thank you for your feedback! I may be over looking what you're trying to explain. On line
533
of your example,str = None
is applied to_field_no_pipe
in thehelp
doctstring when you use therich.inspect(, help=True)
method on theui
object, no?So, are you referring to the print out on line
535
of your example:'_field_no_pipe', <class 'str'>
? This is where you feel it should displaystr | None
instead, so future developers will know this field type can beNone
as well, correct? However, this is the objtype
and not thehelp
doctstring of the obj, correct? Again, thank you for feedback!Thanks for the feedback. According to the Python docs, it uses this
| None = None
typehint only forInit-only
variables. Please let me know your feedback if you agree or disagree ~ thanks!