Hi I am having trouble with autocomplete.
In python when I set a debugger in the code I write:
import pdb
pdb.set_trace()
However, when writing
import pdb
, it gets autocompleted to
import parallel_dict_from_basic
whenever I press enter to write the next line. Is there a way to stop autocomplete from working in this one instance?