Fix holders.py proxy pass-through

pull/1398/head
ValueRaider 2023-02-05 00:06:49 +00:00
parent 141ce7e471
commit 8a5ca71f52
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Holders:
def _scrape(self, proxy):
ticker_url = "{}/{}".format(self._SCRAPE_URL_, self._data.ticker)
try:
resp = self._data.cache_get(ticker_url + '/holders', proxy)
resp = self._data.cache_get(ticker_url + '/holders', proxy=proxy)
holders = pd.read_html(resp.text)
except Exception:
holders = []