From ba960d5d6714349546359ad6a51115aaf100e9b3 Mon Sep 17 00:00:00 2001 From: austnv Date: Sun, 14 Jun 2026 16:38:40 +0300 Subject: [PATCH] debug --- routers/ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/ip.py b/routers/ip.py index b801dbf..cb92b83 100644 --- a/routers/ip.py +++ b/routers/ip.py @@ -172,7 +172,7 @@ async def get_ip(request: Request): response = await client.get(f'https://ipinfo.io/{client_ip}') html = response.text - logging.info(f'html: {html}') ipinfo = IPInfo(html) + logging.info(ipinfo._data) return ipinfo.dict() \ No newline at end of file