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 1d97dee commit 6e79530Copy full SHA for 6e79530
pyflakes/checker.py
@@ -1299,8 +1299,7 @@ def handleNodeStore(self, node):
1299
binding = ExportBinding(name, node._pyflakes_parent, self.scope,
1300
during_type_checking=self._in_type_checking)
1301
elif PY2 and isinstance(getattr(node, 'ctx', None), ast.Param):
1302
- binding = Argument(name, self.getScopeNode(node),
1303
- during_type_checking=self._in_type_checking)
+ binding = Argument(name, self.getScopeNode(node))
1304
else:
1305
binding = Assignment(name, node, during_type_checking=self._in_type_checking)
1306
self.addBinding(node, binding)
0 commit comments