From 316544505759abcbc53860be8213fa689be68430 Mon Sep 17 00:00:00 2001 From: Richard Macias Date: Thu, 19 Mar 2026 22:46:40 -0500 Subject: [PATCH] fix typo in release removed rows --- scripts/release.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/release.py b/scripts/release.py index 0f8e23d..2c16bf5 100644 --- a/scripts/release.py +++ b/scripts/release.py @@ -208,10 +208,12 @@ def make_app_table_row(app: dict[str, Any], change: str) -> str: app_link = f"[{name}]({get_application_url(app)})" if change == "Removed": install = "-" + std = "-" + ds = "-" else: install = f"[Add to Obtainium!][{ref_key}]" - std = "✅" if should_include_app(app, "standard") else "-" - ds = "✅" if should_include_app(app, "dual-screen") else "-" + std = "✅" if should_include_app(app, "standard") else "-" + ds = "✅" if should_include_app(app, "dual-screen") else "-" return f"| {app_link} | {install} | {change} | {std} | {ds} |"