We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 287cb57 commit d41424eCopy full SHA for d41424e
tests/statespace/models/structural/components/test_autoregressive.py
@@ -166,7 +166,9 @@ def test_autoregressive_shared_and_not_shared():
166
167
# make sure param_info is correct
168
# 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"])
+ assert not any(
170
+ dim.startswith("endog_") for dim in shared.param_info["params_shared_ar"]["dims"]
171
+ )
172
assert shared.param_info["sigma_shared_ar"]["dims"] is None
173
174
individual = st.AutoregressiveComponent(
0 commit comments