Skip to content

Commit 4158a45

Browse files
authored
remove outdated / incorrect comments (#753)
1 parent fba640d commit 4158a45

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

pyflakes/checker.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -718,17 +718,7 @@ def in_annotation_func(self, *args, **kwargs):
718718

719719

720720
class Checker:
721-
"""
722-
I check the cleanliness and sanity of Python code.
723-
724-
@ivar _deferredFunctions: Tracking list used by L{deferFunction}. Elements
725-
of the list are two-tuples. The first element is the callable passed
726-
to L{deferFunction}. The second element is a copy of the scope stack
727-
at the time L{deferFunction} was called.
728-
729-
@ivar _deferredAssignments: Similar to C{_deferredFunctions}, but for
730-
callables which are deferred assignment checks.
731-
"""
721+
"""I check the cleanliness and sanity of Python code."""
732722

733723
_ast_node_scope = {
734724
ast.Module: ModuleScope,

0 commit comments

Comments
 (0)