From af7058de990ca47185928de414ab101b26b637e5 Mon Sep 17 00:00:00 2001 From: Georgeos Hardo Date: Mon, 24 Jun 2024 11:37:59 +0000 Subject: [PATCH] tqdm -> tqdm.auto, for notebook users (#233) --- src/nd2/tiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nd2/tiff.py b/src/nd2/tiff.py index ff21a38..8ddf394 100644 --- a/src/nd2/tiff.py +++ b/src/nd2/tiff.py @@ -22,7 +22,7 @@ try: - from tqdm import tqdm as _pbar + from tqdm.auto import tqdm as _pbar except ImportError: