Skip to content

Commit 17338f6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 618e537 commit 17338f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pymc/distributions/continuous.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,6 +1641,7 @@ def logp(value, b, kappa, mu):
16411641
kappa > 0,
16421642
msg="b > 0, kappa > 0",
16431643
)
1644+
16441645
def icdf(p, mu, b, kappa):
16451646
if b <= 0:
16461647
raise ValueError("Scale Parameter sigma must be positive")
@@ -1650,6 +1651,7 @@ def icdf(p, mu, b, kappa):
16501651
res = mu + (b / kappa) * pt.log(2 * (1 - p))
16511652
return res
16521653

1654+
16531655
class LogNormal(PositiveContinuous):
16541656
r"""
16551657
Log-normal log-likelihood.

0 commit comments

Comments
 (0)