Skip to content

Commit

Permalink
Fix applauncher
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhoeller19 committed Oct 24, 2024
1 parent 830364f commit 9eca764
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def _config_resolution(self, launcher_args: dict):

# Resolve additional arguments passed to Kit
self._ov_args = []
if launcher_args["ov_args"]:
if "ov_args" in launcher_args:
self._ov_args = [arg for arg in launcher_args["ov_args"].split()]
sys.argv += self._ov_args

Expand Down

0 comments on commit 9eca764

Please sign in to comment.