Import Match and Pattern from re, not typing (#8277)

This commit is contained in:
Alex Waygood
2022-07-12 14:32:48 +01:00
committed by GitHub
parent 27db37240a
commit 6348a58b8b
78 changed files with 142 additions and 90 deletions

View File

@@ -1,5 +1,6 @@
from collections.abc import Iterable, Iterator, Sequence
from typing import Any, Pattern
from re import Pattern
from typing import Any
from pyflakes.reporter import Reporter

View File

@@ -1,8 +1,9 @@
import ast
import sys
from collections.abc import Callable, Iterable, Iterator
from re import Pattern
from tokenize import TokenInfo
from typing import Any, ClassVar, Pattern, TypeVar, overload
from typing import Any, ClassVar, TypeVar, overload
from typing_extensions import Literal, ParamSpec, TypeAlias
from pyflakes.messages import Message