Skip to content

Commit

Permalink
change use of autonotebook to auto for tqdm
Browse files Browse the repository at this point in the history
  • Loading branch information
trhallam committed Feb 19, 2023
1 parent 20c3cfc commit a47bf5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion segysak/segy/_segy_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
try:
has_ipywidgets = importlib.util.find_spec("ipywidgets") is not None
if has_ipywidgets:
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm
else:
from tqdm import tqdm as tqdm
except ModuleNotFoundError:
Expand Down

0 comments on commit a47bf5b

Please sign in to comment.