fix line length

This commit is contained in:
Jakub Trllo 2024-01-23 10:55:07 +01:00
parent 159a2d1dbc
commit 6f5be5ab7f
2 changed files with 6 additions and 2 deletions

View file

@ -118,7 +118,9 @@ class ExampleAddon(OpenPypeAddOn, IPluginPaths, ITrayAction):
click_group.add_command(cli_main.to_click_obj())
@click_wrap.group(ExampleAddon.name, help="Example addon dynamic cli commands.")
@click_wrap.group(
ExampleAddon.name,
help="Example addon dynamic cli commands.")
def cli_main():
pass

View file

@ -236,6 +236,8 @@ def cli_start_server(port, host):
)
)
@click_wrap.argument("app_name")
@click_wrap.option("--server_url", help="Server url which handle workers and jobs.")
@click_wrap.option(
"--server_url",
help="Server url which handle workers and jobs.")
def cli_start_worker(app_name, server_url):
JobQueueModule.start_worker(app_name, server_url)