Fixed invalid function name

This commit is contained in:
2025-08-15 19:32:27 +02:00
parent 965384c3f2
commit 31b7ce76df

View File

@ -45,7 +45,7 @@ class Scraper:
@retry(Exception, tries=5, delay=5)
def _retry_request(self, method: str, url: str, body: bool) -> bytes | Response:
return self._get(method, url, body=body)
return self._request(method, url, body=body)
def close(self):
self._scraper.close()