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 3474adf commit b8e687aCopy full SHA for b8e687a
pyflakes/checker.py
@@ -1244,8 +1244,7 @@ def handleNodeStore(self, node):
1244
binding = ExportBinding(name, node._pyflakes_parent, self.scope,
1245
during_type_checking=self._in_type_checking)
1246
elif PY2 and isinstance(getattr(node, 'ctx', None), ast.Param):
1247
- binding = Argument(name, self.getScopeNode(node),
1248
- during_type_checking=self._in_type_checking)
+ binding = Argument(name, self.getScopeNode(node))
1249
else:
1250
binding = Assignment(name, node, during_type_checking=self._in_type_checking)
1251
self.addBinding(node, binding)
0 commit comments