diff options
author | 2021-07-27 17:21:43 -0400 | |
---|---|---|
committer | 2021-07-27 17:21:43 -0400 | |
commit | 44c59d33f1a3a52a399ab3caaac052fd500b6f05 (patch) | |
tree | 371a3811697721864ee142da19923313616cb465 | |
parent | Merge pull request #2 from doublevcodes/main (diff) |
remove `tool` from `[tool.isort]`
isort does not recognise `[tool.isort]` as a section for it in the tox.ini file.
It is only recognised as `[tool.isort]` in a pyproject.toml file, and `[isort]` in tox.ini
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,6 +5,6 @@ ignore=ANN101,D107,W503 exclude=.cache,.venv,.git,constants.py,__pycache__ application_import_names=arthur -[tool.isort] +[isort] profile = "black" multi_line_output = 5 |