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 8356379 commit e449f0aCopy full SHA for e449f0a
ads/aqua/app.py
@@ -326,9 +326,9 @@ def get_config(
326
)
327
return config
328
329
- config_path = f"{os.path.dirname(artifact_path)}/{config_folder}/"
+ config_path = os.path.join(os.path.dirname(artifact_path), config_folder)
330
if not is_path_exists(config_path):
331
- config_path = f"{artifact_path.rstrip('/')}/{config_folder}/"
+ config_path = os.path.join(artifact_path.rstrip("/"), config_folder)
332
333
config_path = f"{artifact_path.rstrip('/')}/"
334
config_file_path = f"{config_path}{config_file_name}"
0 commit comments