Skip to content

Commit

Permalink
Fix ruff deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed Jun 15, 2024
1 parent bed10f7 commit 4eb0dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def format_fix(session):
def format_check(session: nox.Session):
session.install(".[localization,dev.format]")
session.run("python", "-m", "ruff", "format", *SCRIPT_PATHS, "--check")
session.run("python", "-m", "ruff", "--output-format", "github", *SCRIPT_PATHS)
session.run("python", "-m", "ruff", "check", "--output-format", "github", *SCRIPT_PATHS)


@nox.session()
Expand Down

0 comments on commit 4eb0dbe

Please sign in to comment.