Skip to content

Commit 5d1b1df

Browse files
Don't specify mutable = True in add_data_to_active_model
1 parent e118684 commit 5d1b1df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc_experimental/statespace/utils/data_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def add_data_to_active_model(values, index):
112112
if OBS_STATE_DIM in pymc_mod.coords:
113113
data_dims = [TIME_DIM, OBS_STATE_DIM]
114114

115-
pymc_mod.add_coord(TIME_DIM, index, mutable=True)
115+
pymc_mod.add_coord(TIME_DIM, index)
116116
data = pm.ConstantData("data", values, dims=data_dims)
117117

118118
return data

0 commit comments

Comments
 (0)