Advertisement
steve-shambles-2109

Auto sort imports

Oct 18th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. """
  2. Python code snippets vol 35:
  3. 173-Auto sort imports
  4. stevepython.wordpress.com
  5.  
  6. pip3 install isort
  7.  
  8. https://github.com/timothycrosley/isort
  9. """
  10. from isort import SortImports
  11.  
  12. # Supply a Python source code file to work on.
  13. SortImports("example.py")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement