From 7646d38302ab7c2d56c2620ac43928331cc65c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sim=C3=A3o=20Afonso=20=40=20Powertools=20Tech?= Date: Tue, 4 Jul 2023 20:00:48 +0100 Subject: [PATCH] tkinter: Add missing "angle" argument to Canvas.create_text (#10404) --- stdlib/tkinter/__init__.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/tkinter/__init__.pyi b/stdlib/tkinter/__init__.pyi index 3291b0c9d..ca6434a85 100644 --- a/stdlib/tkinter/__init__.pyi +++ b/stdlib/tkinter/__init__.pyi @@ -1633,6 +1633,7 @@ class Canvas(Widget, XView, YView): activefill: str = ..., activestipple: str = ..., anchor: _Anchor = ..., + angle: float | str = ..., disabledfill: str = ..., disabledstipple: str = ..., fill: str = ..., @@ -1653,6 +1654,7 @@ class Canvas(Widget, XView, YView): activefill: str = ..., activestipple: str = ..., anchor: _Anchor = ..., + angle: float | str = ..., disabledfill: str = ..., disabledstipple: str = ..., fill: str = ...,