Skip to content

Commit d41424e

Browse files
committed
Fix typo
1 parent 287cb57 commit d41424e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/statespace/models/structural/components/test_autoregressive.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,9 @@ def test_autoregressive_shared_and_not_shared():
166166

167167
# make sure param_info is correct
168168
# shound't have endog state when share_states is True
169-
assert not any(dim.startwith("endog_") for dim in shared.param_info["params_shared_ar"]["dims"])
169+
assert not any(
170+
dim.startswith("endog_") for dim in shared.param_info["params_shared_ar"]["dims"]
171+
)
170172
assert shared.param_info["sigma_shared_ar"]["dims"] is None
171173

172174
individual = st.AutoregressiveComponent(

0 commit comments

Comments
 (0)