Skip to content

Commit

Permalink
🏷️ type: ignore on invoke.call
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Aug 15, 2024
1 parent 1a2a795 commit 955a299
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ozi/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ def sign_log(c: Context, suite: str | None = None) -> None:

@task(
pre=[
call(sign_log, suite='dist'), # pyright: ignore
call(sign_log, suite='test'), # pyright: ignore
call(sign_log, suite='lint'), # pyright: ignore
call(sign_log, suite='dist'), # type: ignore
call(sign_log, suite='test'), # type: ignore
call(sign_log, suite='lint'), # type: ignore
],
)
def release(c: Context, sdist: bool = False) -> None:
Expand Down

0 comments on commit 955a299

Please sign in to comment.