From 994bfb70cb8a1536f6f57614e6df242065425962 Mon Sep 17 00:00:00 2001 From: BO ZHANG Date: Tue, 8 Nov 2022 15:20:10 +0800 Subject: [PATCH] updated fr.summary property --- csst_common/file_recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csst_common/file_recorder.py b/csst_common/file_recorder.py index f83caa9..e0d7181 100644 --- a/csst_common/file_recorder.py +++ b/csst_common/file_recorder.py @@ -90,7 +90,7 @@ class FileRecorder(list): t, max_lines=-1, max_width=-1, show_name=True, show_unit=None, show_dtype=False, align="<") if outs['show_length']: lines.append(f'Length = {len(self)} rows') - return f"[{self.summary}]\n".join(lines) + return f"[{self.summary}]\n" + "\n".join(lines) @property def summary(self): -- GitLab