summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/CallTips.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py
index 67d97d2..97d9746 100644
--- a/Lib/idlelib/CallTips.py
+++ b/Lib/idlelib/CallTips.py
@@ -21,7 +21,7 @@ class CallTips:
]
def __init__(self, editwin=None):
- if editwin == None: # subprocess and test
+ if editwin is None: # subprocess and test
self.editwin = None
return
self.editwin = editwin