Merge branch 'master' into scraper

This commit is contained in:
2025-08-15 19:32:33 +02:00

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()