- add listapreta.py
This commit is contained in:
doms9 2026-04-01 23:21:43 -04:00
parent f9821b6ad5
commit 00000d9288
3 changed files with 187 additions and 1 deletions

View file

@ -57,7 +57,8 @@ class Network:
try:
r = await self.client.get(url, **kwargs)
r.raise_for_status()
if r.status_code >= 400:
r.raise_for_status()
return r
except (httpx.HTTPError, httpx.TimeoutException) as e: