Skip to content
Snippets Groups Projects

Resolve "Load/Save SFG to file"

Closed Jacob Wahlman requested to merge 66-load-save-sfg-to-file into develop
Files
2
+ 1
1
@@ -51,6 +51,6 @@ def load_structure(_path: str) -> AbstractOperation:
with open(_path, "rb") as handle:
return dill.load(handle)
except Exception as e:
print("Unexpected error occured while saving structure: ", e)
print("Unexpected error occured while loading structure: ", e)
return None
Loading