Skip to content

Commit

Permalink
chore: Clean up check duty
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Aug 30, 2024
1 parent a541b5b commit 81d698e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions duties.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def changelog(ctx: Context, bump: str = "") -> None:
ctx.run(tools.git_changelog(bump=bump or None), title="Updating changelog")


@duty(pre=["check_quality", "check_types", "check_docs", "check_dependencies", "check-api"])
def check(ctx: Context) -> None: # noqa: ARG001
@duty(pre=["check_quality", "check_types", "check_docs", "check-api"])
def check(ctx: Context) -> None:
"""Check it all!"""


Expand Down

0 comments on commit 81d698e

Please sign in to comment.