Skip to content

Commit aa4b836

Browse files
committed
fix: minor help strings
1 parent 6dc5c02 commit aa4b836

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

slcli/main.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,12 @@ def get_ascii_art() -> str:
5353

5454

5555
@click.group(context_settings=CONTEXT_SETTINGS, invoke_without_command=True)
56-
@click.option("--version", is_flag=True, help="Show version and exit")
56+
@click.option("--version", "-v", is_flag=True, help="Show version and exit")
5757
@click.pass_context
5858
def cli(ctx, version):
59-
"""Top level of SystemLink Integrator CLI."""
59+
"""
60+
SystemLink CLI (slcli) - Command-line interface for SystemLink resources.
61+
"""
6062
if version:
6163
click.echo(f"slcli version {get_version()}")
6264
ctx.exit()
@@ -103,7 +105,7 @@ def login(url, api_key):
103105

104106
@cli.command()
105107
def logout():
106-
"""Remove your stored SystemLink API key and URL from keyring."""
108+
"""Remove your stored SystemLink API key and URL."""
107109
try:
108110
keyring.delete_password("systemlink-cli", "SYSTEMLINK_API_KEY")
109111
except Exception:

slcli/workspace_click.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def register_workspace_commands(cli: Any) -> None:
2222

2323
@cli.group()
2424
def workspace() -> None:
25-
"""Manage workspaces (list, disable, get)."""
25+
"""Manage workspaces."""
2626
pass
2727

2828
@workspace.command(name="list")

0 commit comments

Comments
 (0)