remove quoted strings (#6933)

This commit is contained in:
Jelle Zijlstra
2022-01-16 14:29:13 -08:00
committed by GitHub
parent 85318d1b21
commit 0949e9e90d
7 changed files with 18 additions and 24 deletions

View File

@@ -60,7 +60,7 @@ _T2 = TypeVar("_T2")
_T3 = TypeVar("_T3")
_T4 = TypeVar("_T4")
_T5 = TypeVar("_T5")
_TT = TypeVar("_TT", bound="type")
_TT = TypeVar("_TT", bound=type)
class object:
__doc__: str | None

View File

@@ -60,7 +60,7 @@ _T2 = TypeVar("_T2")
_T3 = TypeVar("_T3")
_T4 = TypeVar("_T4")
_T5 = TypeVar("_T5")
_TT = TypeVar("_TT", bound="type")
_TT = TypeVar("_TT", bound=type)
class object:
__doc__: str | None