From c7031be3b599332ce4626f9a2c60dead618bca61 Mon Sep 17 00:00:00 2001 From: pcain <pcain@usgs.gov> Date: Wed, 1 Sep 2021 17:37:23 -0600 Subject: [PATCH] fix if statement for SNCL channel mapping --- geomagio/edge/SNCL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geomagio/edge/SNCL.py b/geomagio/edge/SNCL.py index 003dcc7fc..e137b2b16 100644 --- a/geomagio/edge/SNCL.py +++ b/geomagio/edge/SNCL.py @@ -168,7 +168,7 @@ def _get_channel_end(element: str, data_type: str) -> str: elif "_Temp" in element: channel_middle = "K" channel_end = element.split("_")[0] - if data_type in "variation": + if data_type == "variation": if channel_end == "H": channel_end = "U" elif channel_end == "E": -- GitLab