CI: lib/generate_build_jobs.py: Fix type error

Caught by mypy.

Signed-off-by: Stefan Hansson <newbyte@postmarketos.org>
Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/7960>
This commit is contained in:
Stefan Hansson 2026-02-08 17:48:30 +01:00 committed by The Friendly Meow (merge) Bot
parent 0e41c1bcbd
commit 38434fbed9
No known key found for this signature in database

View file

@ -77,7 +77,7 @@ class Device:
return {"postmarketos-mkinitfs-hook-ci"}
@cached_property
def package_dependencies(self) -> list[str]:
def package_dependencies(self) -> set[str]:
# HACK: Work around a bug in depends_recurse which prevents listing all the dependencies
# Bug: https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/issues/2623
return {"postmarketos-initramfs"}