3 Commits

Author SHA1 Message Date
Frank Hamand
2ab96556bc Change multi_line_output mode to 0 for consistency with existing code 2018-04-23 10:31:44 +01:00
Frank Hamand
68f826f7f5 Change default section to third party instead of manual 2018-04-23 10:31:44 +01:00
Jean-Fred Berthelot
7781f5c223 Add isort configuration to sort imports
isort is a Python utility to  to sort imports alphabetically,
and automatically separated into sections.

This config matches the Django coding style:
https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#imports
```
Put imports in these groups: future, standard library, third-party libraries,
other Django components, local Django component, try/excepts.
```

This also adds a tox target, not yet executed by default,
which can be used to easily apply isort (`tox -e isort -- --apply`)
2017-10-17 10:50:45 +01:00