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: