From ee818d9990ebb02cd97e5eb9fbfc8b274842fda8 Mon Sep 17 00:00:00 2001 From: Seunghoon Lee Date: Wed, 1 Nov 2023 18:39:21 +0900 Subject: [PATCH] fixes --- launch.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/launch.py b/launch.py index 085cec486..767eaa984 100755 --- a/launch.py +++ b/launch.py @@ -43,6 +43,10 @@ def init_paths(): import olive.workflows # pylint: disable=unused-import except ModuleNotFoundError: pass + import modules.cmd_args + parser = modules.cmd_args.parser + installer.add_args(parser) + args, _ = parser.parse_known_args() import modules.paths modules.paths.register_paths() script_path = modules.paths.script_path