Skip to content
Snippets Groups Projects
Commit 7e23a734 authored by Matthijs van der Wild's avatar Matthijs van der Wild
Browse files

Corrected typo: control_soltabval.<soltabname>.val now contains the actual control soltab data

parent d5410669
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,7 @@ def main(check, control): ...@@ -73,7 +73,7 @@ def main(check, control):
with open("check_soltab.{}.val".format(soltabname), "w") as f: with open("check_soltab.{}.val".format(soltabname), "w") as f:
f.write(str(check_soltabval[:])) f.write(str(check_soltabval[:]))
with open("control_soltab.{}.val".format(soltabname), "w") as f: with open("control_soltab.{}.val".format(soltabname), "w") as f:
f.write(str(check_soltabval[:])) f.write(str(control_soltabval[:]))
else: else:
print("Val array of soltab {} matches the control".format(soltabname)) print("Val array of soltab {} matches the control".format(soltabname))
check_h5.close() check_h5.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment