summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/cli.py18
-rw-r--r--gitlab/v4/cli.py4
2 files changed, 21 insertions, 1 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py
index 9793964..fd519c3 100644
--- a/gitlab/cli.py
+++ b/gitlab/cli.py
@@ -50,6 +50,23 @@ custom_actions: Dict[str, Dict[str, Tuple[Tuple[str, ...], Tuple[str, ...], bool
__F = TypeVar("__F", bound=Callable[..., Any])
+class VerticalHelpFormatter(argparse.HelpFormatter):
+ def format_help(self) -> str:
+ result = super().format_help()
+ output = ""
+ indent = self._indent_increment * " "
+ for line in result.splitlines(keepends=True):
+ # All of our resources are on one line and wrapped inside braces.
+ # For example: {application,resource1,resource2}
+ # We then put each resource on its own line to make it easier to read.
+ if line.strip().startswith("{"):
+ choices = line.strip().strip("{}").split(",")
+ choices_str = f"\n{indent}".join(choices)
+ line = f"{indent}{choices_str}\n"
+ output += line
+ return output
+
+
def register_custom_action(
cls_names: Union[str, Tuple[str, ...]],
mandatory: Tuple[str, ...] = (),
@@ -110,6 +127,7 @@ def _get_base_parser(add_help: bool = True) -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(
add_help=add_help,
description="GitLab API Command Line Interface",
+ formatter_class=VerticalHelpFormatter,
allow_abbrev=False,
)
parser.add_argument("--version", help="Display the version.", action="store_true")
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py
index 90b6ba6..48369f6 100644
--- a/gitlab/v4/cli.py
+++ b/gitlab/v4/cli.py
@@ -377,7 +377,9 @@ def extend_parser(parser: argparse.ArgumentParser) -> argparse.ArgumentParser:
for cls in sorted(classes, key=operator.attrgetter("__name__")):
arg_name = cli.cls_to_gitlab_resource(cls)
- object_group = subparsers.add_parser(arg_name)
+ object_group = subparsers.add_parser(
+ arg_name, formatter_class=cli.VerticalHelpFormatter
+ )
object_subparsers = object_group.add_subparsers(
title="action",