From 88ccf575e666f9953dc02944ebe25a2145e20724 Mon Sep 17 00:00:00 2001 From: Arnaud Watlet <arnaud.watlet@umons.ac.be> Date: Mon, 11 Dec 2023 14:56:30 +0100 Subject: [PATCH] Adds progress bar in run_sequence --- ohmpi/ohmpi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmpi/ohmpi.py b/ohmpi/ohmpi.py index e717483b..a717972e 100644 --- a/ohmpi/ohmpi.py +++ b/ohmpi/ohmpi.py @@ -709,7 +709,7 @@ class OhmPi(object): n = 1 else: n = self.sequence.shape[0] - for i in tqdm(range(0, n), "Sequence progress:": + for i in tqdm(range(0, n), "Sequence progress:"): if self.sequence is None: quad = np.array([0, 0, 0, 0]) else: -- GitLab