X Tutup
Skip to content

Commit cdaf903

Browse files
Added comment with more naive method we may need soon
1 parent 4442a75 commit cdaf903

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bpython/importcompletion.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ def complete(line, cw):
5353
if not cw:
5454
return None
5555

56+
# TODO if this is done in a thread (as it prob will be in Windows) we'll need this
57+
# if not fully_loaded:
58+
# return []
59+
5660
tokens = line.split()
5761
if tokens[0] not in ['from', 'import']:
5862
return None

0 commit comments

Comments
 (0)
X Tutup