autocomplete-plus-python-jedi
autocomplete-plus-python-jedi copied to clipboard
autocomplete on import line fills in class default params
If I do something like this:
from module import Class
I expect it to end there but hitting enter will autocomplete it to something like this:
from module import Class(param0, param1=2, param2=3, param3=4)
Which I then have to delete. This is obviously desirable if I am making an instance of that class, but not on an import line.