From 4158a4537773ec3da41aed5afdea46c121082804 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 27 Nov 2022 12:51:53 -0800 Subject: remove outdated / incorrect comments (#753) --- pyflakes/checker.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pyflakes/checker.py b/pyflakes/checker.py index 13d2452..919e1bb 100644 --- a/pyflakes/checker.py +++ b/pyflakes/checker.py @@ -718,17 +718,7 @@ def in_string_annotation(func): class Checker: - """ - I check the cleanliness and sanity of Python code. - - @ivar _deferredFunctions: Tracking list used by L{deferFunction}. Elements - of the list are two-tuples. The first element is the callable passed - to L{deferFunction}. The second element is a copy of the scope stack - at the time L{deferFunction} was called. - - @ivar _deferredAssignments: Similar to C{_deferredFunctions}, but for - callables which are deferred assignment checks. - """ + """I check the cleanliness and sanity of Python code.""" _ast_node_scope = { ast.Module: ModuleScope, -- cgit v1.2.1