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 2286cb7 commit 9c1d80dCopy full SHA for 9c1d80d
mypy/types.py
@@ -1923,7 +1923,9 @@ def __hash__(self) -> int:
1923
return hash((self.name, self.pos, self.typ, self.required))
1924
1925
1926
-def _synthesize_arg_from_vararg(vararg: FormalArgument | None, position: int | None) -> FormalArgument | None:
+def _synthesize_arg_from_vararg(
1927
+ vararg: FormalArgument | None, position: int | None
1928
+) -> FormalArgument | None:
1929
if vararg is None:
1930
return None
1931
typ = vararg.typ
0 commit comments