From 088b514b4fba77f8cef733bbf8cf98dcdad4fa05 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 6 Sep 2023 16:29:29 +0200 Subject: [PATCH] debug --- ceph_bench/results_tools.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ceph_bench/results_tools.py b/ceph_bench/results_tools.py index cf534c4..55da0d5 100644 --- a/ceph_bench/results_tools.py +++ b/ceph_bench/results_tools.py @@ -19,6 +19,10 @@ class Results: if save: self.save() + def save(self): + """default save method""" + return self.save_to_csv() + def save_to_csv(self) -> None: """Save results to csv file in the current directory.""" with open(self.name, "w") as f: