Skip to content
Snippets Groups Projects
Commit 59dc8dff authored by Jameson Rollins's avatar Jameson Rollins
Browse files

fix for save arg parsing

parent a101f0c4
No related branches found
No related tags found
No related merge requests found
Pipeline #180840 passed
......@@ -181,11 +181,11 @@ def main():
print(fmt.format(k, v, ov))
return
out_files = set(args.save)
out_data_files = set()
out_plot_files = set()
if out_files:
if args.save:
args.plot = False
out_files = set(args.save)
for path in out_files:
if os.path.splitext(path)[1] in io.DATA_SAVE_FORMATS:
out_data_files.add(path)
......
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