1
0
mirror of synced 2026-04-29 22:38:46 +08:00

feat: add not available sign when no result

This commit is contained in:
MiyakoMeow
2025-03-03 06:21:56 +08:00
parent 7a0019f45f
commit 46d7a49012

View File

@@ -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: