autopushed

This commit is contained in:
2023-09-24 19:01:40 +02:00
parent 60f2509ca3
commit 1cd74ff548
+4 -1
View File
@@ -42,7 +42,10 @@ def is_prime(n):
class AgoraCmd(click.Command):
def format_help(self, ctx, formatter):
click.echo("Usage: Visit anagora.org/foo to execute e.g. bin/foo.py, exec/foo.py from your garden.")
click.echo("""Usage:
- Visit anagora.org/foo to execute e.g. <bin/foo.py>, <exec/foo.py> from your garden.")
- Visit anagora.org/foo/1 to execute e.g. <bin/foo.py 1>, <exec/foo.py 1> from your garden.")
""")
@click.command(cls=AgoraCmd)
@click.argument('n', type=click.INT)