We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 923182b commit 0c0af96Copy full SHA for 0c0af96
1 file changed
app/cli.py
@@ -18,7 +18,10 @@ def invoke(self, ctx: click.Context) -> None:
18
return super().invoke(ctx)
19
20
21
-@click.group(cls=LoggingGroup)
+CONTEXT_SETTINGS = {"max_content_width": 120}
22
+
23
24
+@click.group(cls=LoggingGroup, context_settings=CONTEXT_SETTINGS)
25
@click.option("--verbose", "-v", is_flag=True, help="Enable verbose output")
26
@click.pass_context
27
def cli(ctx: click.Context, verbose: bool) -> None:
0 commit comments