fix typo in release removed rows

This commit is contained in:
Richard Macias
2026-03-19 22:46:40 -05:00
parent 317effd7f7
commit 3165445057

View File

@@ -208,10 +208,12 @@ def make_app_table_row(app: dict[str, Any], change: str) -> str:
app_link = f"[{name}]({get_application_url(app)})" app_link = f"[{name}]({get_application_url(app)})"
if change == "Removed": if change == "Removed":
install = "-" install = "-"
std = "-"
ds = "-"
else: else:
install = f"[Add to Obtainium!][{ref_key}]" install = f"[Add to Obtainium!][{ref_key}]"
std = "" if should_include_app(app, "standard") else "-" std = "" if should_include_app(app, "standard") else "-"
ds = "" if should_include_app(app, "dual-screen") else "-" ds = "" if should_include_app(app, "dual-screen") else "-"
return f"| {app_link} | {install} | {change} | {std} | {ds} |" return f"| {app_link} | {install} | {change} | {std} | {ds} |"