mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
add typehints
This commit is contained in:
parent
80d3255863
commit
4b1f1a9584
1 changed files with 4 additions and 4 deletions
|
|
@ -295,8 +295,8 @@ def run_detached_process(args, **kwargs):
|
|||
|
||||
|
||||
def run_ayon_launcher_process(
|
||||
*args, add_sys_paths=False, **kwargs
|
||||
):
|
||||
*args, add_sys_paths: bool = False, **kwargs
|
||||
) -> str:
|
||||
"""Execute AYON process with passed arguments and wait.
|
||||
|
||||
Wrapper for 'run_process' which prepends AYON executable arguments
|
||||
|
|
@ -325,8 +325,8 @@ def run_ayon_launcher_process(
|
|||
|
||||
|
||||
def run_detached_ayon_launcher_process(
|
||||
*args, add_sys_paths=False, **kwargs
|
||||
):
|
||||
*args, add_sys_paths: bool = False, **kwargs
|
||||
) -> subprocess.Popen:
|
||||
"""Execute AYON process with passed arguments and wait.
|
||||
|
||||
Wrapper for 'run_process' which prepends AYON executable arguments
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue