We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da2417f commit c2e36e4Copy full SHA for c2e36e4
1 file changed
cwmscli/__main__.py
@@ -62,6 +62,10 @@ def main() -> None:
62
}
63
try:
64
cli(standalone_mode=False)
65
+ except click.exceptions.NoArgsIsHelpError as e:
66
+ if e.ctx is not None:
67
+ click.echo(e.ctx.get_help())
68
+ raise SystemExit(0)
69
except SystemExit:
70
raise
71
except Exception as e:
0 commit comments