Merge pull request #8906 from tk0miya/refactor_type_annotations

refactor: Remove meaningless type annotations
This commit is contained in:
Takeshi KOMIYA
2021-02-21 13:13:31 +09:00
committed by GitHub
+2 -2
View File
@@ -47,8 +47,8 @@ if TYPE_CHECKING:
logger = logging.getLogger(__name__)
# Generally useful regular expressions.
ws_re = re.compile(r'\s+') # type: Pattern
url_re = re.compile(r'(?P<schema>.+)://.*') # type: Pattern
ws_re = re.compile(r'\s+')
url_re = re.compile(r'(?P<schema>.+)://.*')
# High-level utility functions.