summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/calltips.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/calltips.py')
-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 3a9b1c6..abcc142 100644
--- a/Lib/idlelib/calltips.py
+++ b/Lib/idlelib/calltips.py
@@ -5,7 +5,6 @@ parameter and docstring information when you type an opening parenthesis, and
which disappear when you type a closing parenthesis.
"""
-import __main__
import inspect
import re
import sys
@@ -14,6 +13,7 @@ import types
from idlelib import calltip_w
from idlelib.hyperparser import HyperParser
+import __main__
class CallTips: