Fix tkinter.ttk's compound argument (#11393)

Allow the empty string (`""`).
This commit is contained in:
Marcell Perger
2024-02-10 18:55:08 +00:00
committed by GitHub
parent 187928d8ce
commit 5eb040b1e6

View File

@@ -46,7 +46,7 @@ _Padding: TypeAlias = (
)
# from ttk_widget (aka ttk::widget) manual page, differs from tkinter._Compound
_TtkCompound: TypeAlias = Literal["text", "image", tkinter._Compound]
_TtkCompound: TypeAlias = Literal["", "text", "image", tkinter._Compound]
class Style:
master: Incomplete