diff --git a/stdlib/3/tkinter/font.pyi b/stdlib/3/tkinter/font.pyi index cd9aca4d0..0bdee0fe6 100644 --- a/stdlib/3/tkinter/font.pyi +++ b/stdlib/3/tkinter/font.pyi @@ -23,7 +23,7 @@ _TkinterSequence = Union[List[_T], Tuple[_T, ...]] # See 'FONT DESCRIPTIONS' in font man page. This uses str because Literal # inside Tuple doesn't work. _FontDescription = Union[ - str, Font, Tuple[str, int], Tuple[str, int, _TkinterSequence[str]], + str, Font, Tuple[str, int], Tuple[str, int, str], Tuple[str, int, _TkinterSequence[str]], ] class _FontDict(TypedDict):