Skip to content

Commit 7cfba8e

Browse files
easy win 2: remove an Any
1 parent 5020d0d commit 7cfba8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/config_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
class VersionTypeError(argparse.ArgumentTypeError):
3232
"""Provide a fallback value if the Python version is unsupported."""
3333

34-
def __init__(self, *args: Any, fallback: tuple[int, int]) -> None:
34+
def __init__(self, *args: object, fallback: tuple[int, int]) -> None:
3535
self.fallback = fallback
3636
super().__init__(*args)
3737

0 commit comments

Comments
 (0)