Skip to content
Snippets Groups Projects
Commit b5dda0ff authored by Erin (Josh) Rigler's avatar Erin (Josh) Rigler
Browse files

Revert "Merge branch 'adjusted-fix' into 'master'"

This reverts merge request !6
parent 868212a3
No related branches found
No related tags found
1 merge request!9Revert "Merge branch 'adjusted-fix' into 'master'"
Pipeline #17780 passed
......@@ -169,15 +169,17 @@ class AdjustedAlgorithm(Algorithm):
return True
# check validity of remaining channels
for c in channels:
if c != "F" and (
if np.all(
[
super().can_produce_data(starttime, endtime, stream.select(channel=c))
== False
):
return False
for c in channels
if c != "F"
]
):
return True
# return false if F or remaining channels cannot produce data
return True
return False
@classmethod
def add_arguments(cls, parser):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment