From e1b8ca9c23c5131569dc7c877f120bc2b5e1e226 Mon Sep 17 00:00:00 2001 From: 0x6f677548 <64972114+0x6f677548@users.noreply.github.com> Date: Sat, 18 Jan 2025 16:51:14 +0000 Subject: [PATCH] feat: update metaguide command help text to include kepub support --- src/intellireading/client/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intellireading/client/commands.py b/src/intellireading/client/commands.py index 602773d..8a54d34 100644 --- a/src/intellireading/client/commands.py +++ b/src/intellireading/client/commands.py @@ -79,13 +79,13 @@ def _get_from_ctx_if_none( @click.command( "metaguide-epub", - help="Applies metaguiding to the provided epub file", + help="Applies metaguiding to the provided epub/kepub file", ) @click.pass_context @_input_file_option @_output_file_option def metaguide_epub_cmd(ctx: click.Context, input_file: str, output_file: str): - """Applies metaguiding to the provided epub file""" + """Applies metaguiding to the provided epub/kepub file""" try: ctx.ensure_object(dict)