From fd6e07d6eb60a82e546a287fcc06ed19d2180278 Mon Sep 17 00:00:00 2001 From: hypergonial <46067571+hypergonial@users.noreply.github.com> Date: Wed, 13 Dec 2023 00:27:40 +0100 Subject: [PATCH] Remove black from CI --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 39bd009..6bbf218 100644 --- a/noxfile.py +++ b/noxfile.py @@ -22,7 +22,7 @@ def format_fix(session: nox.Session): @nox.session() def format(session: nox.Session): session.install("-U", "ruff") - session.run("python", "-m", "black", *SCRIPT_PATHS, "--check") + session.run("python", "-m", "ruff", *SCRIPT_PATHS, "--check") session.run("python", "-m", "ruff", "format", *SCRIPT_PATHS, "--check")