Skip to content
Snippets Groups Projects
Commit 00d1c56c authored by Adrien Crovato's avatar Adrien Crovato
Browse files

Fix string

parent 219261f3
No related branches found
No related tags found
No related merge requests found
Pipeline #51413 passed
......@@ -62,9 +62,9 @@ class DartInterface(SolversInterface):
try:
import_module(dartCfg['dart_path'])
dartflo_import_paths['found'] = dartCfg['dart_path']
print(f'DART loaded from specified path {dartCfg['dart_path']} for {task}.')
print(f'DART loaded from specified path {dartCfg["dart_path"]} for {task}.')
except ImportError:
raise ImportError(f'{ccolors.ANSI_RED}Could not load DART from specified path: {dartCfg['dart_path']}.{ccolors.ANSI_RESET}')
raise ImportError(f'{ccolors.ANSI_RED}Could not load DART from specified path: {dartCfg["dart_path"]}.{ccolors.ANSI_RESET}')
else:
# Load from known paths
for name, path in dartflo_import_paths.items():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment