Skip to content
Snippets Groups Projects

Resolve "release v1.4.0"

Merged Ghost User requested to merge release_v1.4.0 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -252,9 +252,9 @@ class DataHandlerSingleStation(AbstractDataHandler):
@@ -252,9 +252,9 @@ class DataHandlerSingleStation(AbstractDataHandler):
with open(filename, "rb") as pickle_file:
with open(filename, "rb") as pickle_file:
lazy_data = dill.load(pickle_file)
lazy_data = dill.load(pickle_file)
self._extract_lazy(lazy_data)
self._extract_lazy(lazy_data)
logging.info(f"{self.station}: used lazy data")
logging.debug(f"{self.station[0]}: used lazy data")
except FileNotFoundError:
except FileNotFoundError:
logging.info(f"{self.station}: could not use lazy data")
logging.debug(f"{self.station[0]}: could not use lazy data")
self.make_input_target()
self.make_input_target()
def _extract_lazy(self, lazy_data):
def _extract_lazy(self, lazy_data):
Loading