From 44c59d33f1a3a52a399ab3caaac052fd500b6f05 Mon Sep 17 00:00:00 2001 From: onerandomusername Date: Tue, 27 Jul 2021 17:21:43 -0400 Subject: 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3 From a52402751e9254493149b88522cb56389987aeae Mon Sep 17 00:00:00 2001 From: onerandomusername Date: Tue, 27 Jul 2021 17:24:46 -0400 Subject: remove quotes from black profile --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 46fbc3a..d9d6fe4 100644 --- a/tox.ini +++ b/tox.ini @@ -6,5 +6,5 @@ exclude=.cache,.venv,.git,constants.py,__pycache__ application_import_names=arthur [isort] -profile = "black" +profile = black multi_line_output = 5 -- cgit v1.2.3