Skip to content

Commit 5569839

Browse files
committed
Run pre-commit
1 parent 915adcf commit 5569839

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pymc3/distributions/multivariate.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1401,11 +1401,11 @@ def logp(self, x):
14011401
result = _lkj_normalizing_constant(eta, n)
14021402
result += (eta - 1.0) * at.log(det(X))
14031403
return bound(
1404-
result,
1405-
X >= -1,
1406-
X <= 1,
1407-
matrix_pos_def(X),
1408-
eta > 0,
1404+
result,
1405+
X >= -1,
1406+
X <= 1,
1407+
matrix_pos_def(X),
1408+
eta > 0,
14091409
broadcast_conditions=False,
14101410
)
14111411

0 commit comments

Comments
 (0)