We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac563ed commit d9e32c4Copy full SHA for d9e32c4
pyflakes/checker.py
@@ -543,7 +543,6 @@ def __init__(self):
543
super().__init__()
544
# Simplify: manage the special locals as globals
545
self.globals = self.alwaysUsed.copy()
546
- self.returnValue = None # First non-empty return
547
548
def unused_assignments(self):
549
"""
@@ -1888,12 +1887,6 @@ def RETURN(self, node):
1888
1887
self.report(messages.ReturnOutsideFunction, node)
1889
return
1890
1891
- if (
1892
- node.value and
1893
- hasattr(self.scope, 'returnValue') and
1894
- not self.scope.returnValue
1895
- ):
1896
- self.scope.returnValue = node.value
1897
self.handleNode(node.value, node)
1898
1899
def YIELD(self, node):
0 commit comments