From 65509fd17cd5b1289d1df378988528cb802e8959 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Wed, 15 Oct 2025 12:12:55 +0200 Subject: [PATCH] order --- dap/accumulator.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dap/accumulator.py b/dap/accumulator.py index 47a1651..30ecc61 100644 --- a/dap/accumulator.py +++ b/dap/accumulator.py @@ -78,14 +78,14 @@ class FileHandler: os.makedirs(dname, exist_ok=True) self.file = open(fname, "a") - def flush(self): - if self.file: - self.file.flush() - def close(self): if self.file: self.file.close() + def flush(self): + if self.file: + self.file.flush() +