Skip to content

Commit 9c1d80d

Browse files
committed
.
1 parent 2286cb7 commit 9c1d80d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypy/types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1923,7 +1923,9 @@ def __hash__(self) -> int:
19231923
return hash((self.name, self.pos, self.typ, self.required))
19241924

19251925

1926-
def _synthesize_arg_from_vararg(vararg: FormalArgument | None, position: int | None) -> FormalArgument | None:
1926+
def _synthesize_arg_from_vararg(
1927+
vararg: FormalArgument | None, position: int | None
1928+
) -> FormalArgument | None:
19271929
if vararg is None:
19281930
return None
19291931
typ = vararg.typ

0 commit comments

Comments
 (0)