From 90a9e85db39745cb828e4c9ef28d36092c2d293c Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Thu, 27 Sep 2018 20:00:42 +1000 Subject: [PATCH] Local variable is assigned to but never used --- Tests/test_imagetk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_imagetk.py b/Tests/test_imagetk.py index 2df35c584..14ce74eb1 100644 --- a/Tests/test_imagetk.py +++ b/Tests/test_imagetk.py @@ -25,7 +25,7 @@ class TestImageTk(PillowTestCase): self.skipTest("Tk not installed") try: # setup tk - app = tk.Frame() + tk.Frame() # root = tk.Tk() except (tk.TclError) as v: self.skipTest("TCL Error: %s" % v)