From 0edcd320f0187f695aa68788450677f9a840fcbf Mon Sep 17 00:00:00 2001 From: Alex Wernle <awernle@usgs.gov> Date: Tue, 1 Nov 2022 13:57:45 -0600 Subject: [PATCH] Fixed linting errors --- geomagio/algorithm/AverageAlgorithm.py | 2 +- test/algorithm_test/AverageAlgorithm_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/geomagio/algorithm/AverageAlgorithm.py b/geomagio/algorithm/AverageAlgorithm.py index 9dbf6f7bf..16eafdf98 100644 --- a/geomagio/algorithm/AverageAlgorithm.py +++ b/geomagio/algorithm/AverageAlgorithm.py @@ -69,7 +69,7 @@ class AverageAlgorithm(Algorithm): ) def process(self, timeseries): - """averages a channel across multiple stations and counts available + """averages a channel across multiple stations and counts available observatories per timestep Parameters diff --git a/test/algorithm_test/AverageAlgorithm_test.py b/test/algorithm_test/AverageAlgorithm_test.py index 1a0038126..43cd48d00 100644 --- a/test/algorithm_test/AverageAlgorithm_test.py +++ b/test/algorithm_test/AverageAlgorithm_test.py @@ -8,7 +8,7 @@ from numpy.testing import assert_array_equal, assert_equal def test_process(): """AverageAlgorithm_test.test_process() - confirms that the output of the algorithm is the average of two + confirms that the output of the algorithm is the average of two stations and ignores the third. """ -- GitLab