Skip to content

Commit 5386ae9

Browse files
pre-commit
1 parent 130671f commit 5386ae9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc/tests/test_data_container.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,9 +317,9 @@ def test_explicit_coords(self):
317317
with pm.Model(coords=coords) as pmodel:
318318
pm.MutableData("observations", data, dims=("rows", "columns"))
319319
# new data with same shape
320-
pm.set_data({"observations":data+1})
320+
pm.set_data({"observations": data + 1})
321321
# new data with same shape and coords
322-
pm.set_data({"observations":data},coords=coords)
322+
pm.set_data({"observations": data}, coords=coords)
323323
assert "rows" in pmodel.coords
324324
assert pmodel.coords["rows"] == ("R1", "R2", "R3", "R4", "R5")
325325
assert "rows" in pmodel.dim_lengths

0 commit comments

Comments
 (0)