From 13b199506c44c304581f33589cab177f3842a170 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Mon, 27 Jul 2020 09:33:20 -0600 Subject: [PATCH] Change false to not in if statement --- geomagio/algorithm/AdjustedAlgorithm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/geomagio/algorithm/AdjustedAlgorithm.py b/geomagio/algorithm/AdjustedAlgorithm.py index a4e65acb8..f05984c37 100644 --- a/geomagio/algorithm/AdjustedAlgorithm.py +++ b/geomagio/algorithm/AdjustedAlgorithm.py @@ -170,9 +170,8 @@ class AdjustedAlgorithm(Algorithm): # check validity of remaining channels for c in channels: - if c != "F" and ( + if c != "F" and not ( super().can_produce_data(starttime, endtime, stream.select(channel=c)) - == False ): return False -- GitLab