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
When not providing default values for any method or function argument, i.e. having only POSITIONAL_OR_KEYWORD arguments, the parameters should be considered KEYWORD in case that the method or function signature only has **kwargs and not *args. (Taken from our Slack discussion).
The text was updated successfully, but these errors were encountered:
…with ASTs, pytorch-lightning#11653.
- Some refactoring mostly related to the new AST support.
- Parameters of type POSITIONAL_OR_KEYWORD now considered KEYWORD #98.
- dataclasses no longer an optional, now an install require on python 3.6.
- JSONARGPARSE_DEBUG now also sets the reconplogger level to DEBUG.
When not providing default values for any method or function argument, i.e. having only
POSITIONAL_OR_KEYWORD
arguments, the parameters should be consideredKEYWORD
in case that the method or function signature only has**kwargs
and not*args
. (Taken from our Slack discussion).The text was updated successfully, but these errors were encountered: