Skip to content
Snippets Groups Projects
Commit 0da9eaf7 authored by Cyril Moineau's avatar Cyril Moineau Committed by Lucas Lopez
Browse files

Apply 1 suggestion(s) to 1 file(s)


Co-authored-by: default avatarCyril Moineau <cyril.moineau@cea.fr>
parent f7a42038
No related branches found
No related tags found
No related merge requests found
Pipeline #50489 canceled
...@@ -197,7 +197,7 @@ def arg_verifications(save_path:str, ...@@ -197,7 +197,7 @@ def arg_verifications(save_path:str,
else: else:
metrics_list=list(OrderedDict.fromkeys(metrics_list)) metrics_list=list(OrderedDict.fromkeys(metrics_list))
for metr in metrics_list: for metr in metrics_list:
if not metr in suppported_metrics: if metr not in suppported_metrics:
raise ValueError(f"Unsupported metrics: \"{metr}\" the supported metrics are the following: ', '.join(suppported_metrics)") raise ValueError(f"Unsupported metrics: \"{metr}\" the supported metrics are the following: ', '.join(suppported_metrics)")
#nbfigures #nbfigures
#the only supported amounts of plots pe figure are 4, 2 or 1 #the only supported amounts of plots pe figure are 4, 2 or 1
......
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