Skip to content

Commit 45b0b36

Browse files
author
Lucas Eckes
committed
pre-commit linting
1 parent 0c626ab commit 45b0b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc/distributions/continuous.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2530,9 +2530,9 @@ def logcdf(value, alpha, beta):
25302530
beta > 0,
25312531
msg="alpha > 0, beta > 0",
25322532
)
2533-
2533+
25342534
def icdf(value, alpha, beta):
2535-
res = 1 / Gamma.icdf(value=1-value, alpha=alpha, scale=1 / beta)
2535+
res = 1 / Gamma.icdf(value=1 - value, alpha=alpha, scale=1 / beta)
25362536
res = check_icdf_value(res, value)
25372537
return check_icdf_parameters(
25382538
res,

0 commit comments

Comments
 (0)