Skip to content

Commit

Permalink
fix print command lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed Oct 17, 2023
1 parent 8ede210 commit 9de355c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rose/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ def unmount(ctx: Context) -> None:
unmount_virtualfs(ctx.config)


@cli.group()
def print() -> None:
@cli.group(name="print")
def printg() -> None:
"""Print cached library data (JSON-encoded)."""


@print.command()
@printg.command()
@click.pass_obj
def albums(ctx: Context) -> None:
"""Print albums."""
Expand Down

0 comments on commit 9de355c

Please sign in to comment.