From f7333e6147f932161bdf78538a86916d825a9307 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Wed, 15 May 2019 10:36:57 -0400 Subject: [PATCH] Removed illegal append --- PySimpleGUI.py | 1 - 1 file changed, 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index e0e7ad21..1bdb221c 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -2187,7 +2187,6 @@ class Graph(Element): print('*** WARNING - The Graph element has not been finalized and cannot be drawn upon ***') print('Call Window.Finalize() prior to this operation') return None - self.Images.append(image) try: # in case closed with X id = self._TKCanvas2.create_image(converted_point, image=image, anchor=tk.NW) self.Images[id] = image