Skip to content

Commit b8c8a99

Browse files
committed
Remove unused import and unused noqa comment
1 parent d941e41 commit b8c8a99

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

flake8_dunder_all/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# stdlib
3333
import ast
3434
import sys
35-
from typing import Any, Generator, List, Set, Tuple, Type, Union
35+
from typing import Any, Generator, Set, Tuple, Type, Union
3636

3737
# 3rd party
3838
from consolekit.terminal_colours import Fore
@@ -51,7 +51,7 @@
5151

5252
__all__ = ["Visitor", "Plugin", "check_and_add_all", "DALL000"]
5353

54-
DALL000 = "DALL000 Module lacks __all__." # noqa: E501
54+
DALL000 = "DALL000 Module lacks __all__."
5555

5656

5757
class Visitor(ast.NodeVisitor):

0 commit comments

Comments
 (0)