archive_eol: Convert to list
This commit is contained in:
parent
fa40371e6d
commit
302c3a10ae
1 changed files with 1 additions and 1 deletions
2
.github/scripts/archive_eol.py
vendored
2
.github/scripts/archive_eol.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue