From 7e6af79adf594cc8159b21cb920f85b3f0efd36f Mon Sep 17 00:00:00 2001 From: 2xmm <2xmm.mike@gmail.com> Date: Thu, 22 Oct 2020 10:56:29 -0300 Subject: [PATCH] Update comment regarding timezone inclusion for csv requests. --- tiingo/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiingo/api.py b/tiingo/api.py index 9486240..0b59ea5 100644 --- a/tiingo/api.py +++ b/tiingo/api.py @@ -201,7 +201,7 @@ class TiingoClient(RestClient): prices.index = pd.to_datetime(prices.index) # Localize to UTC to ensure equivalence between data returned in json format and - # csv format. Data requested in csv format does not include a timezone. + # csv format. Tiingo daily data requested in csv format does not include a timezone. if prices.index.tz is None: prices.index = prices.index.tz_localize('UTC')