Skip to content

Commit

Permalink
Stop being dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
hypergonial committed Dec 12, 2023
1 parent 0c5b11b commit 6844aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ def format_fix(session: nox.Session):


@nox.session()
def format(session: nox.Session):
def format(session: nox.Session) -> None:
session.install("-U", "ruff")
session.run("python", "-m", "ruff", *SCRIPT_PATHS, "--check")
session.run("python", "-m", "ruff", "format", *SCRIPT_PATHS, "--check")
session.run("python", "-m", "ruff", *SCRIPT_PATHS)


# Copyright (C) 2022-present hypergonial
Expand Down

0 comments on commit 6844aa1

Please sign in to comment.