We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51dfc1c commit 04a14d7Copy full SHA for 04a14d7
1 file changed
bpython/importcompletion.py
@@ -53,6 +53,9 @@ def complete(line, cw):
53
if not cw:
54
return None
55
56
+ if not fully_loaded:
57
+ return []
58
+
59
tokens = line.split()
60
if tokens[0] not in ['from', 'import']:
61
0 commit comments