Skip to content

Commit

Permalink
Merge pull request #29 from neuroforgede/2.1.0
Browse files Browse the repository at this point in the history
ignore irrelevant type errors
  • Loading branch information
s4ke authored Jul 8, 2023
2 parents 4ac9796 + f9224c7 commit 25a805d
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 25a805d

Please sign in to comment.