From f138aeec37d7b03d7b129e6f91a7f85141bb9903 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Tue, 21 Jul 2020 09:33:32 -0600 Subject: [PATCH] Remove np.all in can_produce_data --- geomagio/algorithm/AdjustedAlgorithm.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/geomagio/algorithm/AdjustedAlgorithm.py b/geomagio/algorithm/AdjustedAlgorithm.py index f42353bb0..c1135e984 100644 --- a/geomagio/algorithm/AdjustedAlgorithm.py +++ b/geomagio/algorithm/AdjustedAlgorithm.py @@ -169,13 +169,13 @@ class AdjustedAlgorithm(Algorithm): return True # check validity of remaining channels - if np.all( - [ - super().can_produce_data(starttime, endtime, stream.select(channel=c)) - for c in channels - if c != "F" - ] - ): + cpd = False + for c in channels: + if c != "F": + cpd = super().can_produce_data( + starttime, endtime, stream.select(channel=c) + ) + if cpd == True: return True # return false if F or remaining channels cannot produce data -- GitLab