From 6e3eaa07b6c80e42635edd35eb81054a8d27658e Mon Sep 17 00:00:00 2001
From: s233039 <s233039@student.dtu.dk>
Date: Sat, 29 Jun 2024 11:09:29 +0200
Subject: [PATCH] Progress bar for loading files works on linux

---
 qim3d/io/loading.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qim3d/io/loading.py b/qim3d/io/loading.py
index 1c1eee14..3bf90352 100644
--- a/qim3d/io/loading.py
+++ b/qim3d/io/loading.py
@@ -897,5 +897,5 @@ class ImgExamples:
         img_examples_path = Path(qim3d.__file__).parents[0] / "img_examples"
         img_paths = list(img_examples_path.glob("*.tif"))
 
-        update_dict = {path.stem: load(path) for path in img_paths}
+        update_dict = {path.stem: load(path, progress_bar = False) for path in img_paths}
         self.__dict__.update(update_dict)
-- 
GitLab