Skip to content

Commit

Permalink
chore: Unimplemented subcommand output is not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
souloss committed Dec 19, 2021
1 parent da3a5a7 commit 39ddb5f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pypssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,18 +524,19 @@ def ls():
@click.argument('name', type=str, required=True)
def get(name:str):
"""
Not implemented
get key
"""
pass
click.echo("Not implemented")

@key.command()
@click.argument('name', type=str, required=True)
def trust(name:str):
"""
Not implemented
trust key
"""
pass

click.echo("Not implemented")

# config cmd
@cli.group()
Expand Down

0 comments on commit 39ddb5f

Please sign in to comment.