Refactor empty data check so that there is only one return statement
This commit is contained in:
parent
07b3af1877
commit
575e106f32
@ -95,9 +95,7 @@ def get_historical_data(symbol: str, interval: int, date: datetime = None,
|
||||
data = StringIO(data)
|
||||
data = pd.read_csv(data, index_col = False,
|
||||
names=['Date', 'High', 'Low', 'Open', 'Close', 'Total Volume', 'Period Volume'])
|
||||
if data.empty:
|
||||
return data
|
||||
|
||||
if not data.empty:
|
||||
data['Date'] = pd.to_datetime(data['Date'])
|
||||
data['Date'] = data['Date'].dt.date
|
||||
return data
|
||||
|
Loading…
Reference in New Issue
Block a user