mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix missing local variable
This commit is contained in:
parent
5b57ecb1e3
commit
e215e8c4bc
1 changed files with 1 additions and 1 deletions
|
|
@ -245,11 +245,11 @@ class ApplicationTool:
|
|||
class ApplicationExecutable:
|
||||
def __init__(self, executable):
|
||||
default_launch_args = []
|
||||
executable_path = None
|
||||
if isinstance(executable, str):
|
||||
executable_path = executable
|
||||
|
||||
elif isinstance(executable, list):
|
||||
executable_path = None
|
||||
for arg in executable:
|
||||
if arg:
|
||||
if executable_path is None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue