Skip to content

Commit

Permalink
ignore irrelevant type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed Jul 8, 2023
1 parent de94abe commit f9224c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/compose_client/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ def cli() -> None:
pass


cli.add_command(diff)
cli.add_command(dump)
cli.add_command(apply)
cli.add_command(push)
cli.add_command(diff) # type: ignore
cli.add_command(dump) # type: ignore
cli.add_command(apply) # type: ignore
cli.add_command(push) # type: ignore



0 comments on commit f9224c7

Please sign in to comment.