mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fix line length
This commit is contained in:
parent
159a2d1dbc
commit
6f5be5ab7f
2 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue