From 1ec7fac038163b34f376fef20e1d2dd0c4e7bbaf Mon Sep 17 00:00:00 2001
From: "E. Joshua Rigler" <erigler@usgs.gov>
Date: Thu, 20 Oct 2016 11:55:21 -0600
Subject: [PATCH] FFS Travis-CI, get over your whitespace issues

---
 geomagio/algorithm/SqDistAlgorithm.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geomagio/algorithm/SqDistAlgorithm.py b/geomagio/algorithm/SqDistAlgorithm.py
index c5a33c214..efe86d13a 100644
--- a/geomagio/algorithm/SqDistAlgorithm.py
+++ b/geomagio/algorithm/SqDistAlgorithm.py
@@ -463,7 +463,7 @@ class SqDistAlgorithm(Algorithm):
                 # s[i + m] = s[i] + gamma * (1 - alpha) * et
 
                 # distribute error correction across range of seasonal
-                # corrections according to weights calculated above 
+                # corrections according to weights calculated above
                 s[i + m] = s[i] + gamma * (1 - alpha) * et * weights[nts / 2]
                 s[i + m - nts / 2:i + m] = (s[i + m - nts / 2:i + m] +
                                             gamma * (1 - alpha) * et *
@@ -471,7 +471,7 @@ class SqDistAlgorithm(Algorithm):
                 s[i + 1:i + nts / 2 + 1] = (s[i + 1:i + nts / 2 + 1] +
                                             gamma * (1 - alpha) * et *
                                             weights[nts / 2 + 1:])
-                
+ 
                 # update l and b using equation-error formulation
                 l = l + phi * b + alpha * et
                 b = phi * b + alpha * beta * et
-- 
GitLab