From 893c6be9e9685fc59de9f06a5a70643afbdc8b08 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Mon, 9 Mar 2026 14:01:27 -0700 Subject: [PATCH] better docstring --- src/ytdl_sub/cli/parsers/main.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ytdl_sub/cli/parsers/main.py b/src/ytdl_sub/cli/parsers/main.py index f0afe246..54535c3c 100644 --- a/src/ytdl_sub/cli/parsers/main.py +++ b/src/ytdl_sub/cli/parsers/main.py @@ -260,17 +260,17 @@ class InspectArguments: ) -inspect_parser = subparsers.add_parser("inspect") +inspect_parser = subparsers.add_parser("inspect", formatter_class=argparse.RawTextHelpFormatter) inspect_parser.add_argument( InspectArguments.LEVEL.short, InspectArguments.LEVEL.long, metavar=",".join(str(i) for i in range(4)), type=str, help="""level of inspection to perform: - 0 - original present the subscription as-is (default) - 1 - fill fill in simple variable types - 2 - resolve resolve all variables - 3 - internal resolve all variables to their internal representation + 0 - original present the subscription as-is (default) + 1 - fill fill in defined values + 2 - resolve resolve all variables + 3 - internal resolve all variables to their internal representation """, default="0", choices=list(InspectArguments.LevelChoices.keys())