myint / pyformat

Formats Python code to follow a consistent style
https://pypi.python.org/pypi/pyformat
96 stars 10 forks source link

Include the 'isort' module for sorting the imports according to PEP 8 #2

Closed CreamyCookie closed 9 years ago

CreamyCookie commented 9 years ago

The isort library can sort the imports so that they fully comply with the import section of PEP 8. (autopep8 only does a few changes in regards to imports.)

myint commented 9 years ago

Yeah, I'm familiar with it, but I prefer not to add anymore dependencies.

Thanks

CreamyCookie commented 9 years ago

@myint Oh.. why not? Wouldn't it be a great addition?