Reputation: 1519
I'm looking for ways to sort and to remove unused imports. Cmd+Shift+O just adds used modules.
(Apologies if this is a duplicate, I really can't find anything non-Java.)
Upvotes: 6
Views: 1909
Reputation: 51
Another two steps method is :
This way you will avoid the trap of PyDev not finding imports.
Upvotes: 5
Reputation: 328754
I don't know a simple way to do this. My approach is two step:
But PyDev can't always figure out which modules you need (especially when you use aliases), so this isn't foolproof. Always make sure you can revert your changes.
Upvotes: 2