Skip to content

Commit 6c7f127

Browse files
committed
MAINT Remove double import of bound.
1 parent 1b01b53 commit 6c7f127

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pymc3/distributions/continuous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import warnings
1414

1515
from . import transforms
16-
from .dist_math import bound, bound, logpow, gammaln, betaln, std_cdf, i0, i1
16+
from .dist_math import bound, logpow, gammaln, betaln, std_cdf, i0, i1
1717
from .distribution import Continuous, draw_values, generate_samples
1818

1919
__all__ = ['Uniform', 'Flat', 'Normal', 'Beta', 'Exponential', 'Laplace',

pymc3/distributions/discrete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import theano.tensor as tt
66
from scipy import stats
77

8-
from .dist_math import bound, bound, factln, binomln, betaln, logpow
8+
from .dist_math import bound, factln, binomln, betaln, logpow
99
from .distribution import Discrete, draw_values, generate_samples
1010

1111
__all__ = ['Binomial', 'BetaBinomial', 'Bernoulli', 'Poisson',

0 commit comments

Comments
 (0)