diff options
author | 2021-09-09 17:09:52 -0400 | |
---|---|---|
committer | 2021-09-09 22:09:52 +0100 | |
commit | 31f2c3f66261697498f841142f5e589c3442a0d5 (patch) | |
tree | 8528bf74d172999c360ace058d16ab9056cb0e4a | |
parent | Pin platform in Dockerfile (#9) (diff) |
Ensure compatibility with black (#11)
the black profile already sets this variable, and it sets it to a different setting from what was set
see the docs here: https://pycqa.github.io/isort/docs/configuration/profiles.html
the black profile sets the below settings
multi_line_output: 3
include_trailing_comma: True
force_grid_wrap: 0
use_parentheses: True
ensure_newline_before_comments: True
line_length: 88
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,4 +7,4 @@ application_import_names=arthur [isort] profile=black -multi_line_output=5 +line_length=100 |