From 3349d037bba96e64fe2ce7c6a7960554acb0a06a Mon Sep 17 00:00:00 2001 From: lixiaoyong1 Date: Mon, 9 Dec 2024 14:08:42 -0500 Subject: [PATCH] Add function set_output_path --- common/config.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/common/config.py b/common/config.py index 9cb1919..49e7344 100644 --- a/common/config.py +++ b/common/config.py @@ -134,6 +134,13 @@ class Config: ''' return Config.path_format(Config.inst_path) + @staticmethod + def set_output_path(): + ''' + set the output file save directory + ''' + Config.whole_out_d = Config.path_format(Config.out_path + Config.out_d) + @staticmethod def get_output_path(): ''' -- Gitee