From e285441ee7c4c0d1973f90cc86773ad9d3475cbb Mon Sep 17 00:00:00 2001 From: stedif <stefano.difrischia@inaf.it> Date: Thu, 22 Sep 2022 17:08:15 +0200 Subject: [PATCH] L2SS-869: fix unit test --- .../tangostationcontrol/statistics/writer/hdf5.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tangostationcontrol/tangostationcontrol/statistics/writer/hdf5.py b/tangostationcontrol/tangostationcontrol/statistics/writer/hdf5.py index b0e8769d6..2ec3a7b2d 100644 --- a/tangostationcontrol/tangostationcontrol/statistics/writer/hdf5.py +++ b/tangostationcontrol/tangostationcontrol/statistics/writer/hdf5.py @@ -373,6 +373,9 @@ class BstHdf5Writer(HDF5Writer): def new_collector(self): return BSTCollector() + + def retrieve_attribute_values(self): + pass def write_values_matrix(self, current_group): # store the BST values @@ -413,6 +416,9 @@ class XstHdf5Writer(HDF5Writer): f"{self.file_location}/{self.mode}_SB{self.subband_index}_" f"{time_str}{suffix}" ) + + def retrieve_attribute_values(self): + pass def write_values_matrix(self, current_group): # requires a function call to transform the xst_blocks in to the right -- GitLab