Skip to content

Commit

Permalink
Revert a few more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fonnesbeck committed Dec 12, 2024
1 parent a8a8a6b commit 58bc697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymc_extras/statespace/core/statespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@


def _validate_filter_arg(filter_arg):
if filter_arg.lower() not in FILTER_FACTORY.keys():
if filter_arg.lower() not in FILTER_OUTPUT_TYPES:
raise ValueError(
f'filter_output should be one of {", ".join(FILTER_FACTORY.keys())}, received {filter_arg}'
f'filter_output should be one of {", ".join(FILTER_OUTPUT_TYPES)}, received {filter_arg}'
)


Expand Down

0 comments on commit 58bc697

Please sign in to comment.