문제

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.)

도움이 되었습니까?

해결책 2

I don't know a simple way to do this. My approach is two step:

  1. Delete all imports (or comment them out)
  2. Cmd+Shift+O to build a new set of imports

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.

다른 팁

Another two steps method is :

  1. Cmd+Shift+O to sort the existing imports (and may be pull some new ones)
  2. Run Pylint or PyFlakes to spot unused imports

This way you will avoid the trap of PyDev not finding imports.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top