mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
from tkinter import Frame, Misc, Scrollbar, Text
|
||||
from typing import Any, Optional
|
||||
from typing import Any
|
||||
|
||||
# The methods from Pack, Place, and Grid are dynamically added over the parent's impls
|
||||
class ScrolledText(Text):
|
||||
frame: Frame
|
||||
vbar: Scrollbar
|
||||
def __init__(self, master: Optional[Misc] = ..., **kwargs: Any) -> None: ...
|
||||
def __init__(self, master: Misc | None = ..., **kwargs: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user