aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar onerandomusername <[email protected]>2021-07-27 17:21:43 -0400
committerGravatar GitHub <[email protected]>2021-07-27 17:21:43 -0400
commit44c59d33f1a3a52a399ab3caaac052fd500b6f05 (patch)
tree371a3811697721864ee142da19923313616cb465
parentMerge 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.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 7fdc71c..46fbc3a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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