Skip to content

Commit

Permalink
exchanged napari progress with tqdm (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
lufre1 authored Nov 18, 2024
1 parent 4f7b180 commit 8850d5e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion torch_em/util/prediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
import nifty.tools as nt
import numpy as np
import torch
from tqdm import tqdm
try:
from napari.utils import progress as tqdm
except ImportError:
from tqdm import tqdm

from ..transform.raw import standardize

Expand Down

0 comments on commit 8850d5e

Please sign in to comment.