mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
remove quoted strings (#6933)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user