From bd6af64bc687ce7948a17fc3b3a49e42667363b3 Mon Sep 17 00:00:00 2001 From: austnv Date: Sun, 14 Jun 2026 15:51:15 +0300 Subject: [PATCH] fix: invalid return type --- routers/ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/ip.py b/routers/ip.py index 73d7e63..ffed5da 100644 --- a/routers/ip.py +++ b/routers/ip.py @@ -163,4 +163,4 @@ async def get_ip(request: Request): html = response.text ipinfo = IPInfo(html) - return ipinfo._data \ No newline at end of file + return ipinfo.dict() \ No newline at end of file