From 302c3a10ae19b22de9d6539a6fbfc0f9d2f47a5a Mon Sep 17 00:00:00 2001 From: bbhtt Date: Wed, 2 Jul 2025 08:59:19 +0530 Subject: [PATCH] archive_eol: Convert to list --- .github/scripts/archive_eol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/archive_eol.py b/.github/scripts/archive_eol.py index e9982dd..e630118 100644 --- a/.github/scripts/archive_eol.py +++ b/.github/scripts/archive_eol.py @@ -130,7 +130,7 @@ def main() -> None: beta = get_eol_refs("x86_64", "flathub-beta") | get_eol_refs( "aarch64", "flathub-beta" ) - eols = {x.lower() for x in (stable | beta)} - {x.lower() for x in excludes} + eols = list({x.lower() for x in (stable | beta)} - {x.lower() for x in excludes}) if not eols: return