Skip to content

Commit e93c401

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cc4fcf3 commit e93c401

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test-data/unit/check-functions.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

35803580
def 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

35833583
def f2(x: list[int]):
35843584
return g(*x)
35853585

35863586
def f3(x: Any):
3587-
return g(*x)
3587+
return g(*x)
35883588

35893589
from typing import Optional
35903590
def f4(x: Optional[int]):
35913591
return g(*x) # E: Expected iterable as variadic argument
35923592

35933593
def f(x: int):
3594-
return g(*x) # E: Expected iterable as variadic argument
3594+
return g(*x) # E: Expected iterable as variadic argument

0 commit comments

Comments
 (0)