From 6c6bca50c4dca45407c61e8ee2f9bf0bbfd6bca0 Mon Sep 17 00:00:00 2001 From: Nicolas Aunai Date: Fri, 11 Oct 2024 14:21:49 +0200 Subject: [PATCH] not closing files prevents re-opening them --- pyphare/pyphare/pharesee/run/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyphare/pyphare/pharesee/run/run.py b/pyphare/pyphare/pharesee/run/run.py index c965696f0..ea2883d80 100644 --- a/pyphare/pyphare/pharesee/run/run.py +++ b/pyphare/pyphare/pharesee/run/run.py @@ -284,6 +284,7 @@ def all_times(self): for it, t in enumerate(time_keys): time[it] = float(t) ts[quantities_per_file[basename]] = time + ff.close() return ts def times(self, qty):