Merge pull request #1632 from ranaroussi/fix/history-30m-typo

Fix typo in Ticker.history(30m)
pull/1638/head
ValueRaider 2023-07-23 13:18:35 +01:00 committed by GitHub
commit 688120cab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -312,10 +312,7 @@ class TickerBase:
})
try:
quotes['Dividends'] = quotes2['Dividends'].max()
except Exception:
pass
try:
quotes['Stock Splits'] = quotes2['Dividends'].max()
quotes['Stock Splits'] = quotes2['Stock Splits'].max()
except Exception:
pass