From 2288704c4874c0bba2eb8ec7ce7b65ed6772161c Mon Sep 17 00:00:00 2001 From: FiveMovesAhead Date: Tue, 10 Feb 2026 15:48:19 +0000 Subject: [PATCH] Patch list_algorithms script --- scripts/list_algorithms | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/list_algorithms b/scripts/list_algorithms index 2ae5b6b5..71ed4588 100644 --- a/scripts/list_algorithms +++ b/scripts/list_algorithms @@ -43,6 +43,8 @@ def main(): status = f"pending compilation" elif not compile_success[a["id"]]: status = f"failed to compile" + elif a["state"]["banned"]: + status = f"banned" elif a["state"]["round_merged"] is not None: status = f"merged @ round {a['state']['round_merged']}" elif a["state"]["round_active"] <= block["details"]["round"]: