Skip to content
Snippets Groups Projects

try out bugfix

Compare and
2 files
+ 4
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -276,6 +276,7 @@ class DataHandlerSingleStation(AbstractDataHandler):
filename = os.path.join(self.lazy_path, hash + ".pickle")
try:
if self.overwrite_lazy_data is True:
os.remove(filename)
raise FileNotFoundError
with open(filename, "rb") as pickle_file:
lazy_data = dill.load(pickle_file)
Loading