Skip to content

Commit 31b9f57

Browse files
committed
run pre-commit
1 parent dbcb972 commit 31b9f57

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pymc/distributions/multivariate.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1820,7 +1820,13 @@ class MatrixNormal(Continuous):
18201820
.. code-block:: python
18211821
18221822
# Setup data
1823-
true_colcov = np.array([[1.0, 0.5, 0.1], [0.5, 1.0, 0.2], [0.1, 0.2, 1.0],])
1823+
true_colcov = np.array(
1824+
[
1825+
[1.0, 0.5, 0.1],
1826+
[0.5, 1.0, 0.2],
1827+
[0.1, 0.2, 1.0],
1828+
]
1829+
)
18241830
m = 3
18251831
n = true_colcov.shape[0]
18261832
true_scale = 3

0 commit comments

Comments
 (0)