From d7323e08ace1246db8a73a0ac7c07de0f26226c2 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sat, 26 Oct 2024 20:44:14 -0700 Subject: [PATCH] Fix isort invocation referring to gone setup.cfg file (#922). --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 6685b88b6..c42caff4c 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ passenv = COVERAGE_FILE commands = pytest {posargs} black --check . - isort --check-only --settings-path setup.cfg . + isort --check-only . flake8 borgmatic tests codespell @@ -39,7 +39,7 @@ commands = [testenv:isort] deps = {[testenv]deps} commands = - isort --settings-path setup.cfg . + isort . [testenv:codespell] deps = {[testenv]deps}