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
Previously, kw_only was set to True by default. However, this feature does not exist in Python 3.9.
When working on #114, I attempted to approximate the feature. However, it still does not work in cases where the child class has kw_only set to False, since position parameters are shifted to the front in Python 3.10.
Previously,
kw_only
was set toTrue
by default. However, this feature does not exist in Python 3.9.When working on #114, I attempted to approximate the feature. However, it still does not work in cases where the child class has
kw_only
set toFalse
, since position parameters are shifted to the front in Python 3.10.Here was the initial implementation:
The text was updated successfully, but these errors were encountered: