Skip to content

Commit 488c86f

Browse files
committed
fix: cross-version "# type: ignore"
Signed-off-by: Élie Goudout <[email protected]>
1 parent 3d2830a commit 488c86f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scio/utils/enums.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ class Arg(str, EnumWithExplicitSupport):
8383
"""
8484

8585
__slots__ = ()
86-
# Remove following signature fix when python 3.13 is drpoped
87-
__signature__ = Signature([Parameter("value", Parameter.POSITIONAL_OR_KEYWORD)])
86+
# Remove following signature fix when python 3.13 is dropped
87+
__signature__ = Signature([Parameter("value", Parameter.POSITIONAL_OR_KEYWORD)]) # type: ignore[assignment, unused-ignore]
8888

8989
@classmethod
9090
def _missing_(cls, value: object) -> None:

0 commit comments

Comments
 (0)