Skip to content

Commit 3b60143

Browse files
committed
Remove constructor arg.
1 parent d66aeb8 commit 3b60143

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyflakes/checker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,11 +310,11 @@ class Binding(object):
310310
the node that this binding was last used.
311311
"""
312312

313-
def __init__(self, name, source, during_type_checking=False):
313+
def __init__(self, name, source):
314314
self.name = name
315315
self.source = source
316316
self.used = False
317-
self.during_type_checking = during_type_checking
317+
self.during_type_checking = False
318318

319319
def __str__(self):
320320
return self.name

0 commit comments

Comments
 (0)