From 254a1eaa15d5073cc5179847972fad9104b1308b Mon Sep 17 00:00:00 2001 From: Floris-Jan Willemsen Date: Thu, 19 Oct 2023 17:24:38 +0200 Subject: [PATCH] Changed updated command line interface for Ruff --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index afc448745..435375886 100644 --- a/noxfile.py +++ b/noxfile.py @@ -32,7 +32,7 @@ # def lint(session: nox.Session) -> None: # """Ensure the code is formatted as expected.""" # session.install("ruff") -# session.run("ruff", "--format=github", "--config=pyproject.toml", ".") +# session.run("ruff", "--output-format=github", "--config=pyproject.toml", ".") # @session # uncomment this line to only run on the current python interpreter