Skip to content

Commit 47a5644

Browse files
get config bugfix
1 parent 0db36f2 commit 47a5644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/aqua/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def get_config(
333333
config_path = os.path.join(artifact_path.rstrip("/"), config_folder)
334334
if not is_path_exists(config_path):
335335
config_path = f"{artifact_path.rstrip('/')}/"
336-
config_file_path = f"{config_path}{config_file_name}"
336+
config_file_path = f"{config_path.rstrip('/')}/{config_file_name}"
337337
if is_path_exists(config_file_path):
338338
try:
339339
config = load_config(

0 commit comments

Comments
 (0)