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 8574ee2 commit a5b2b52Copy full SHA for a5b2b52
mypy/fastparse.py
@@ -1635,9 +1635,8 @@ def visit_Call(self, n: Call) -> CallExpr:
1635
[a.value if isinstance(a, Starred) else a for a in args] + [k.value for k in keywords]
1636
)
1637
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
- ]
+ [ARG_STAR if type(a) is Starred else ARG_POS for a in args]
+ + [ARG_STAR2 if arg is None else ARG_NAMED for arg in keyword_names]
1641
1642
e = CallExpr(
1643
self.visit(n.func),
0 commit comments