You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The min and max kwargs are "manually" implemented as kw-only args to Int and Float. As a consequence, they do not appear in the generated docs (https://traitlets.readthedocs.io/en/stable/trait_types.html#numbers) anywhere AFAICT. I think sphinx allows manually overriding the signature to e.g. use the Python3-format (Int(default_value=Undefined, allow_none=False, *, min=None, max=None, **kwargs)) in the docs.
The text was updated successfully, but these errors were encountered:
The
min
andmax
kwargs are "manually" implemented as kw-only args toInt
andFloat
. As a consequence, they do not appear in the generated docs (https://traitlets.readthedocs.io/en/stable/trait_types.html#numbers) anywhere AFAICT. I think sphinx allows manually overriding the signature to e.g. use the Python3-format (Int(default_value=Undefined, allow_none=False, *, min=None, max=None, **kwargs)
) in the docs.The text was updated successfully, but these errors were encountered: