Skip to content

Commit 08c9df0

Browse files
committed
Solve freaking pre-commit issues
1 parent c5e76c9 commit 08c9df0

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

pymc/tests/distributions/test_multivariate.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -755,12 +755,7 @@ def test_car_logp(self, sparse, size):
755755

756756
# d x d adjacency matrix for a square (d=4) of rook-adjacent sites
757757
W = np.array(
758-
[
759-
[0.0, 1.0, 1.0, 0.0],
760-
[1.0, 0.0, 0.0, 1.0],
761-
[1.0, 0.0, 0.0, 1.0],
762-
[0.0, 1.0, 1.0, 0.0],
763-
]
758+
[[0.0, 1.0, 1.0, 0.0], [1.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 1.0], [0.0, 1.0, 1.0, 0.0]]
764759
)
765760

766761
tau = 2
@@ -1045,12 +1040,7 @@ def test_zerosum_normal_moment(self, shape, zerosum_axes, expected):
10451040
)
10461041
def test_car_moment(self, mu, size, expected):
10471042
W = np.array(
1048-
[
1049-
[0.0, 1.0, 1.0, 0.0],
1050-
[1.0, 0.0, 0.0, 1.0],
1051-
[1.0, 0.0, 0.0, 1.0],
1052-
[0.0, 1.0, 1.0, 0.0],
1053-
]
1043+
[[0.0, 1.0, 1.0, 0.0], [1.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 1.0], [0.0, 1.0, 1.0, 0.0]]
10541044
)
10551045
tau = 2
10561046
alpha = 0.5

0 commit comments

Comments
 (0)