From 4f9e0af51e88726fa4dc2377710e4662f80fbfa0 Mon Sep 17 00:00:00 2001 From: Ben Letham Date: Wed, 21 Jun 2017 14:40:18 -0700 Subject: [PATCH] Fix whitespace issue --- python/fbprophet/forecaster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/fbprophet/forecaster.py b/python/fbprophet/forecaster.py index ec11388..4175026 100644 --- a/python/fbprophet/forecaster.py +++ b/python/fbprophet/forecaster.py @@ -383,7 +383,7 @@ class Prophet(object): if last - first < pd.Timedelta(days=730): self.yearly_seasonality = False logger.info('Disabling yearly seasonality. Run prophet with ' - 'yearly_seasonality=True to override this.') + 'yearly_seasonality=True to override this.') else: self.yearly_seasonality = True if self.weekly_seasonality == 'auto': @@ -393,7 +393,7 @@ class Prophet(object): (min_dt >= pd.Timedelta(weeks=1))): self.weekly_seasonality = False logger.info('Disabling weekly seasonality. Run prophet with ' - 'weekly_seasonality=True to override this.') + 'weekly_seasonality=True to override this.') else: self.weekly_seasonality = True