We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2830a commit 488c86fCopy full SHA for 488c86f
scio/utils/enums.py
@@ -83,8 +83,8 @@ class Arg(str, EnumWithExplicitSupport):
83
"""
84
85
__slots__ = ()
86
- # Remove following signature fix when python 3.13 is drpoped
87
- __signature__ = Signature([Parameter("value", Parameter.POSITIONAL_OR_KEYWORD)])
+ # Remove following signature fix when python 3.13 is dropped
+ __signature__ = Signature([Parameter("value", Parameter.POSITIONAL_OR_KEYWORD)]) # type: ignore[assignment, unused-ignore]
88
89
@classmethod
90
def _missing_(cls, value: object) -> None:
0 commit comments