From c8da17990a460c638346ab18b32779a874284e5c Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 29 Jun 2024 02:28:54 +0200 Subject: [PATCH] Update nox task for ruff lint --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 08d6bfc..74ce576 100644 --- a/noxfile.py +++ b/noxfile.py @@ -50,7 +50,7 @@ def ruff_lint(session: nox.Session) -> None: "--only=ruff", external=True, ) - session.run("ruff", *args) + session.run("ruff", "check", *args) @nox.session(python=supported_pythons)