From 46d7a49012ae50be6ef20b1b5f11aebddc424193 Mon Sep 17 00:00:00 2001 From: MiyakoMeow <110924386+MiyakoMeow@users.noreply.github.com> Date: Mon, 3 Mar 2025 06:21:56 +0800 Subject: [PATCH] feat: add not available sign when no result --- fetch_ips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch_ips.py b/fetch_ips.py index 817e79c53..714423575 100644 --- a/fetch_ips.py +++ b/fetch_ips.py @@ -141,7 +141,7 @@ async def main() -> None: ip = await get_ip(session, github_url) if ip is None: print(f"{github_url}: IP Not Found") - continue + ip = "# Not available" content += ip.ljust(30) + github_url + "\n" content_list.append((ip, github_url,)) except Exception: