Skip to content

Commit 53c2a0d

Browse files
committed
Fix styling issue.
1 parent 748dde3 commit 53c2a0d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pymc3/distributions/dist_math.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def normal_lccdf(mu, sigma, x):
135135

136136
def log_diff_normal_cdf(mu, sigma, x, y):
137137
"""
138-
Compute :math:`log(\Phi(\frac{x - \mu}{\sigma}) - \Phi(\frac{y - \mu}{\sigma}))` safely in log space.
138+
Compute :math:`\\log(\\Phi(\frac{x - \\mu}{\\sigma}) - \\Phi(\frac{y - \\mu}{\\sigma}))` safely in log space.
139139
140140
Parameters
141141
----------
@@ -151,7 +151,7 @@ def log_diff_normal_cdf(mu, sigma, x, y):
151151
152152
Returns
153153
-------
154-
log (\Phi(x) - \Phi(y))
154+
log (\\Phi(x) - \\Phi(y))
155155
156156
"""
157157
x = (x - mu) / sigma / tt.sqrt(2.0)

pymc3/tests/test_distributions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
from scipy import integrate
9191
import scipy.stats.distributions as sp
9292
import scipy.stats
93-
from scipy.special import logit, erf, erfcx
93+
from scipy.special import logit, erf
9494
import theano
9595
import theano.tensor as tt
9696
from ..math import kronecker

0 commit comments

Comments
 (0)