Skip to content

Commit 0e1c166

Browse files
committed
Quick fix with date issue
1 parent df4350a commit 0e1c166

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stockrec.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import fire
55

6-
from stockrec.extract import extract_forecasts, extract_forecast
6+
from stockrec.extract import extract_forecast
77
from stockrec.fetch import get_forecasts
88
from stockrec.pgstore import ForecastStorage
99

@@ -22,8 +22,8 @@ def today(self, url=None):
2222

2323
def range(self, start, stop=datetime.date.today().isoformat()):
2424
"""Scrape forecasts from start date to stop date."""
25-
start_date = datetime.date.fromisoformat(start)
26-
stop_date = datetime.date.fromisoformat(stop)
25+
start_date = datetime.date.fromisoformat(start[:10])
26+
stop_date = datetime.date.fromisoformat(stop[:10])
2727
storage_con = ForecastStorage()
2828
day_count = (stop_date - start_date).days + 1
2929
for date in [start_date + datetime.timedelta(n) for n in range(day_count)]:

0 commit comments

Comments
 (0)