From 3f4ce1c2d4b92da5eb0dac2ca6538d133023749f Mon Sep 17 00:00:00 2001 From: Roman Mankowsky Date: Sat, 28 Sep 2019 06:29:17 +0200 Subject: [PATCH] new way to interact with timetool pipeline --- eco/xdiagnostics/timetools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eco/xdiagnostics/timetools.py b/eco/xdiagnostics/timetools.py index 006bbbb..5efbb58 100644 --- a/eco/xdiagnostics/timetools.py +++ b/eco/xdiagnostics/timetools.py @@ -46,7 +46,7 @@ class SpectralEncoder: s = [f"Status {self.name}"] s.append(str(self.x_target)) s.append(str(self.y_target)) - s.append(f"Data reduction is {self.data_reduction_client.get_status()}") + s.append(f"Data reduction is on") s.append(f" roi {self.roi}") s.append(f" roi_background {self.roi_background}") return '\n'.join(s) @@ -104,7 +104,7 @@ class SpatialEncoder: s = [f"Status {self.name}"] # s.append(str(self.x_target)) # s.append(str(self.y_target)) - s.append(f"Data reduction is {self.data_reduction_client.get_status()}") + s.append(f"Data reduction is on") s.append(f" roi {self.roi}") s.append(f" roi_background {self.roi_background}") return '\n'.join(s)