Skip to content

Commit 712d565

Browse files
authored
Merge pull request #1191 from oraNod/fix-ruff-path
use ruff check <path> syntax in noxfile
2 parents 05bbf18 + 4fbf8cc commit 712d565

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def static(session: nox.Session):
3131
Run static checkers
3232
"""
3333
install(session, req="static")
34-
session.run("ruff", *session.posargs, *LINT_FILES)
34+
session.run("ruff", "check", *session.posargs, *LINT_FILES)
3535

3636

3737
@nox.session

0 commit comments

Comments
 (0)