From facc59ecb719d9c178a3085124749a954667b33e Mon Sep 17 00:00:00 2001
From: Jeremy Fee <jmfee@usgs.gov>
Date: Thu, 5 Dec 2019 16:20:20 -0700
Subject: [PATCH] Switch unused variable name to _

---
 geomagio/edge/MiniSeedFactory.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geomagio/edge/MiniSeedFactory.py b/geomagio/edge/MiniSeedFactory.py
index a6ce76c98..073a121bb 100644
--- a/geomagio/edge/MiniSeedFactory.py
+++ b/geomagio/edge/MiniSeedFactory.py
@@ -380,7 +380,7 @@ class MiniSeedFactory(TimeseriesFactory):
         # determine suffix
         location_suffix = '0'
         if channel.find('_') >= 0:
-            element, suffix = channel.split('_')
+            _, suffix = channel.split('_')
             if suffix == 'Dist':
                 location_suffix = 'D'
             elif suffix == 'SQ':
-- 
GitLab