You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I understand it should be filters: Iterable[Filter] | dict[str, Any] | None = None.
In various config files I see filters are given as a dictionary. How can I go from a dictionary to a list of Filters? In the comment for the above filter it is suggested
:param filters: list of filters, or dict of (name, kwargs) for FilterFactory
but FilterFactory does not seem like the right type. FilterCollection might be right, but only stores DataIndexFilter.
The text was updated successfully, but these errors were encountered:
To implement a reader it would be great if the type of filters were known. The relevant code is
pyaro/src/pyaro/timeseries/Reader.py
Line 11 in 85c0d4e
As far as I understand it should be
filters: Iterable[Filter] | dict[str, Any] | None = None
.In various config files I see filters are given as a dictionary. How can I go from a dictionary to a list of
Filter
s? In the comment for the above filter it is suggestedbut
FilterFactory
does not seem like the right type.FilterCollection
might be right, but only storesDataIndexFilter
.The text was updated successfully, but these errors were encountered: