Skip to content

Commit a5b2b52

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

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

mypy/fastparse.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,9 +1635,8 @@ def visit_Call(self, n: Call) -> CallExpr:
16351635
[a.value if isinstance(a, Starred) else a for a in args] + [k.value for k in keywords]
16361636
)
16371637
arg_kinds = ArgKinds(
1638-
[ARG_STAR if type(a) is Starred else ARG_POS for a in args] + [
1639-
ARG_STAR2 if arg is None else ARG_NAMED for arg in keyword_names
1640-
]
1638+
[ARG_STAR if type(a) is Starred else ARG_POS for a in args]
1639+
+ [ARG_STAR2 if arg is None else ARG_NAMED for arg in keyword_names]
16411640
)
16421641
e = CallExpr(
16431642
self.visit(n.func),

0 commit comments

Comments
 (0)