We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a5644 commit 9373281Copy full SHA for 9373281
ads/aqua/app.py
@@ -333,7 +333,7 @@ def get_config(
333
config_path = os.path.join(artifact_path.rstrip("/"), config_folder)
334
if not is_path_exists(config_path):
335
config_path = f"{artifact_path.rstrip('/')}/"
336
- config_file_path = f"{config_path.rstrip('/')}/{config_file_name}"
+ config_file_path = os.path.join(config_path, config_file_name)
337
if is_path_exists(config_file_path):
338
try:
339
config = load_config(
0 commit comments