Skip to content

Commit cef5bed

Browse files
fix import sorting
1 parent aae93b3 commit cef5bed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pymc3/distributions/discrete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
factln,
2727
log_diff_normal_cdf,
2828
logpow,
29-
normal_lcdf,
3029
normal_lccdf,
30+
normal_lcdf,
3131
random_choice,
3232
)
3333
from pymc3.distributions.distribution import Discrete, draw_values, generate_samples

pymc3/tests/test_distributions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from numpy import array, exp, inf, log
2727
from numpy.testing import assert_allclose, assert_almost_equal, assert_equal
2828
from scipy import integrate
29-
from scipy.special import logit, erf
29+
from scipy.special import erf, logit
3030

3131
import pymc3 as pm
3232

0 commit comments

Comments
 (0)