Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentClarret committed Jul 3, 2024
1 parent e47b2a3 commit c71d0ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tasks/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,13 @@ def python(ctx):
# We want to the CI to fail if there are any issues
ctx.run("ruff format --check .")
ctx.run("ruff check .")
ctx.run("mypy")
else:
# Otherwise we just need to format the files
ctx.run("ruff format .")
ctx.run("ruff check --fix .")
ctx.run("mypy")

ctx.run("vulture")
ctx.run("mypy")


@task
Expand Down

0 comments on commit c71d0ef

Please sign in to comment.