idiomatic types

Signed-off-by: h8d13 <hadean-eon-dev@proton.me>
This commit is contained in:
h8d13 2026-08-12 14:17:49 +02:00
parent a6cf788b89
commit bda45164d5
No known key found for this signature in database
GPG Key ID: 4066352FC2E0674B
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class Installer:
disk_config: DiskLayoutConfiguration,
base_packages: list[str] = [],
kernels: list[str] | None = None,
firmware: list[str] | None = None,
firmware: list[str] = [],
silent: bool = False,
):
"""
@ -103,7 +103,7 @@ class Installer:
self._base_packages.append(kernel)
# Optional firmware is strapped with base so the blobs are in place before the initramfs is generated
self._base_packages.extend(firmware or [])
self._base_packages.extend(firmware)
# If using accessibility tools in the live environment, append those to the packages list
if accessibility_tools_in_use():