Skip to content

Commit

Permalink
Merge pull request #297 from hyanwong/tqdm-auto
Browse files Browse the repository at this point in the history
Switch to auto tqdm
  • Loading branch information
hyanwong authored Jul 14, 2023
2 parents cff4cb7 + 0922fd7 commit a83df44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsdate/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import numpy as np
import scipy.stats
import tskit
from tqdm import tqdm
from tqdm.auto import tqdm

from . import approx
from . import base
Expand Down
2 changes: 1 addition & 1 deletion tsdate/prior.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import scipy.stats
import tskit
from scipy.special import comb
from tqdm import tqdm
from tqdm.auto import tqdm

from . import base
from . import cache
Expand Down

0 comments on commit a83df44

Please sign in to comment.