feat(cli): add help messages to anilist command and subcommands

This commit is contained in:
Benex254
2024-08-05 09:47:01 +03:00
parent 015f289f80
commit ad3c4d5c6b
8 changed files with 27 additions and 8 deletions

View File

@@ -5,7 +5,10 @@ from ...interfaces.anilist_interfaces import select_anime
from ...utils.tools import QueryDict
@click.command()
@click.command(
help="Fetch the 15 most recently updated anime from anilist that are currently releasing",
short_help="View recently updated anime",
)
@click.pass_obj
def recent(config):
anime_data = AniList.get_most_recently_updated()