From 1009b299959148e97fc3e1ccdaefdddcd1761e5f Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Sun, 19 May 2024 06:07:52 +0200 Subject: [PATCH] cli: fix spelling error in queue adding commands --- grzegorz_clients/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grzegorz_clients/cli.py b/grzegorz_clients/cli.py index 1912084..cc65f8a 100644 --- a/grzegorz_clients/cli.py +++ b/grzegorz_clients/cli.py @@ -64,7 +64,7 @@ def _add( api.playlist_goto(current_index if put_pre else current_index + 1) api.set_playing(True) -@cli.command(help="Add one ore more items to the playlist") +@cli.command(help="Add one or more items to the playlist") def play( urls: list[str], pre: bool = False, @@ -72,14 +72,14 @@ def play( ): _add(urls, put_post=not pre, put_pre=pre, play=True, api_base=api_base) -@cli.command(help="Add one ore more items to the playlist") +@cli.command(help="Add one or more items to the playlist") def next( urls: list[str], api_base: str = DEFAULT_API_BASE, ): _add(urls, put_post=True, api_base=api_base) -@cli.command(help="Add one ore more items to the playlist") +@cli.command(help="Add one or more items to the playlist") def queue( urls: list[str], play: bool = True,