There was an error while loading. Please reload this page.
1 parent 85d7f95 commit a30908dCopy full SHA for a30908d
1 file changed
src/aspire/operators/filters.py
@@ -331,7 +331,7 @@ def _init_size(self):
331
Check sizes of _components are coherent and initialize resulting length.
332
"""
333
filter_lengths = [len(f) for f in self._components]
334
- filter_lengths = np.unique(filter_lengths, sorted=True)
+ filter_lengths = np.unique(filter_lengths) # defaults to sorted=True
335
336
# Code should be able to broadcast n_filters with n_filters, or n_filters with 1_filters.
337
# Any other combination is considered an error.
0 commit comments