From b719be106acb8a5002c7de5a1dbd443f205f597c Mon Sep 17 00:00:00 2001 From: arigdon-usgs <arigdon@usgs.gov> Date: Thu, 19 Jul 2018 12:26:11 -0600 Subject: [PATCH] Fixed linting errors with regard to spacings --- geomagio/algorithm/Algorithm.py | 4 ++-- geomagio/algorithm/XYZAlgorithm.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/geomagio/algorithm/Algorithm.py b/geomagio/algorithm/Algorithm.py index a712b14a1..40fd46f64 100644 --- a/geomagio/algorithm/Algorithm.py +++ b/geomagio/algorithm/Algorithm.py @@ -87,7 +87,7 @@ class Algorithm(object): """ return (start, end) - def can_produce_data(self, starttime, endtime, stream, channels = None): + def can_produce_data(self, starttime, endtime, stream, channels=None): """Can Product data Parameters @@ -100,7 +100,7 @@ class Algorithm(object): The input stream we want to make certain has data for the algorithm """ input_gaps = TimeseriesUtility.get_merged_gaps( - TimeseriesUtility.get_stream_gaps(stream,channels)) + TimeseriesUtility.get_stream_gaps(stream, channels)) for input_gap in input_gaps: # Check for gaps that include the entire range if (starttime >= input_gap[0] and diff --git a/geomagio/algorithm/XYZAlgorithm.py b/geomagio/algorithm/XYZAlgorithm.py index 2d1a5de97..ab75c7b24 100644 --- a/geomagio/algorithm/XYZAlgorithm.py +++ b/geomagio/algorithm/XYZAlgorithm.py @@ -142,13 +142,13 @@ class XYZAlgorithm(Algorithm): self._outformat = arguments.xyz_to self._inchannels = arguments.inchannels or \ CHANNELS[self._informat] - # outchannels set according to specified outchannels or inchannel designation + # Set outchannels to outchannel argument or inchannel designation # if the inchannels do not have 'Z' or 'F' neither will the outchannel if arguments.outchannels: self._outchannels = arguments.outchannels else: self._outchannels = CHANNELS[self._outformat] - if not 'Z' in self._inchannels: + if 'Z' not in self._inchannels: del self._outchannels[self._outchannels.index('Z')] - if not 'F' in self._inchannels: + if 'F' not in self._inchannels: del self._outchannels[self._outchannels.index('F')] -- GitLab