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

@@ -101,9 +101,9 @@ class EventType(str, Enum):
VirtualEvent: str
Visibility: str
_W = TypeVar("_W", bound="Misc")
_W = TypeVar("_W", bound=Misc)
# Events considered covariant because you should never assign to event.widget.
_W_co = TypeVar("_W_co", covariant=True, bound="Misc")
_W_co = TypeVar("_W_co", covariant=True, bound=Misc)
class Event(Generic[_W_co]):
serial: int