From 2302fa17cf3075bc8881ea3249ef4e4351fb0f99 Mon Sep 17 00:00:00 2001 From: DongWoo Son <99868561+dnd-qodqks@users.noreply.github.com> Date: Mon, 25 Sep 2023 21:37:40 +0900 Subject: [PATCH] no-issue: Capitalise 'PhotoImage' (gh-108958) --- Lib/turtle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/turtle.py b/Lib/turtle.py index 6119b7a447e7..7bfe81351b0b 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -874,7 +874,7 @@ class Shape(object): if isinstance(data, str): if data.lower().endswith(".gif") and isfile(data): data = TurtleScreen._image(data) - # else data assumed to be Photoimage + # else data assumed to be PhotoImage elif type_ == "compound": data = [] else: -- 2.47.3