Skip to content

Commit 0ebc7c9

Browse files
committed
Revert "Import typing.{List,Tuple} for Python 3.8"
This reverts commit 8986e79.
1 parent 8986e79 commit 0ebc7c9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/pep8ext_naming.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from fnmatch import fnmatchcase
77
from functools import partial
88
from itertools import chain
9-
from typing import List, Tuple
109

1110
from flake8 import style_guide
1211

@@ -35,8 +34,8 @@
3534
class BaseASTCheck:
3635
"""Base for AST Checks."""
3736

38-
all: List['BaseASTCheck'] = []
39-
codes: Tuple[str, ...]
37+
all: list['BaseASTCheck'] = []
38+
codes: tuple[str, ...]
4039

4140
def __init_subclass__(cls, **kwargs):
4241
super().__init_subclass__(**kwargs)

0 commit comments

Comments
 (0)