Skip to content

Commit 05690c3

Browse files
fix: break long line in completion command to meet ruff linting requirements
Co-authored-by: Jeffrey Aven <jeffreyaven@users.noreply.github.com>
1 parent e0cdf62 commit 05690c3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

stackql_deploy/cli.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,10 @@ def upgrade(ctx):
386386
#
387387

388388
@cli.command()
389-
@click.argument('shell', type=click.Choice(['bash', 'zsh', 'fish', 'powershell'], case_sensitive=False))
389+
@click.argument(
390+
'shell',
391+
type=click.Choice(['bash', 'zsh', 'fish', 'powershell'], case_sensitive=False)
392+
)
390393
def completion(shell):
391394
"""Generate shell completion script for the specified shell.
392395

0 commit comments

Comments
 (0)