Skip to content

Commit

Permalink
Remove six from isort standard libraries
Browse files Browse the repository at this point in the history
isort seems to have switched to `frozenset` for `known_standard_library`, which broke the way we're overriding it here to add `six`. This caused only `six` to be recognized as a standard library, and everything else as third-party. This is an explicit behavior change (see PyCQA/isort#1238).

We no longer use `six` so we can remove this setting
  • Loading branch information
cwdavies committed Jul 13, 2020
1 parent 6a48d5a commit b45ace6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -54,6 +54,6 @@ multi_line_output=3
skip=.tox,migrations
use_parentheses=1
known_django=django
known_future_library=future,six
known_future_library=future
default_section=THIRDPARTY
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

0 comments on commit b45ace6

Please sign in to comment.