File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3578,17 +3578,17 @@ def baz(x: int):
35783578 return bar(*x, **x) # E: Expected iterable as variadic argument # E: Argument after ** must be a mapping, not "int"
35793579
35803580def f1(x: int):
3581- return g(**x) # E: Argument after ** must be a mapping, not "int"
3581+ return g(**x) # E: Argument after ** must be a mapping, not "int"
35823582
35833583def f2(x: list[int]):
35843584 return g(*x)
35853585
35863586def f3(x: Any):
3587- return g(*x)
3587+ return g(*x)
35883588
35893589from typing import Optional
35903590def f4(x: Optional[int]):
35913591 return g(*x) # E: Expected iterable as variadic argument
35923592
35933593def f(x: int):
3594- return g(*x) # E: Expected iterable as variadic argument
3594+ return g(*x) # E: Expected iterable as variadic argument
You can’t perform that action at this time.
0 commit comments