mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-30 20:18:11 +00:00
Fix whitespace issue
This commit is contained in:
parent
283e9be5e0
commit
4f9e0af51e
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue