Use str instead of Text (#7812)

This commit is contained in:
Alex Waygood
2022-05-09 20:47:11 +01:00
committed by GitHub
parent 5c13f8bbce
commit ac30b96d14
7 changed files with 22 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
import abc
import sys
from _typeshed import Self as TypeshedSelf # see #6932 for why the alias cannot have a leading underscore
from typing import ( # noqa: Y022,Y027
from typing import ( # noqa: Y022,Y027,Y039
TYPE_CHECKING as TYPE_CHECKING,
Any,
AsyncContextManager as AsyncContextManager,