From 8419c5db322ccea2f5758d23027bccf2098fe978 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Thu, 21 May 2020 12:38:38 -0600 Subject: [PATCH] Add consideration for outchannel as None --- geomagio/algorithm/AdjustedAlgorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geomagio/algorithm/AdjustedAlgorithm.py b/geomagio/algorithm/AdjustedAlgorithm.py index 123069038..35a693bc4 100644 --- a/geomagio/algorithm/AdjustedAlgorithm.py +++ b/geomagio/algorithm/AdjustedAlgorithm.py @@ -239,4 +239,4 @@ class AdjustedAlgorithm(Algorithm): self.outchannels = ["H", "E", "Z", "F"] else: self.inchannels = arguments.inchannels - self.outchannels = arguments.outchannels + self.outchannels = arguments.outchannels or arguments.inchannels -- GitLab