From 865ff3f65a262be541b4468643e556847063c84b Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Thu, 23 Jul 2026 08:07:05 -0400 Subject: [PATCH] Make type field in lsblk required (#4655) --- archinstall/lib/models/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/models/device.py b/archinstall/lib/models/device.py index a50f7d8e..72a8fa27 100644 --- a/archinstall/lib/models/device.py +++ b/archinstall/lib/models/device.py @@ -1618,7 +1618,7 @@ class LsblkInfo(BaseModel): fsver: str | None fsavail: int | None fsuse_percentage: str | None = Field(alias='fsuse%') - type: str | None # may be None for strange behavior with md devices + type: str mountpoint: Path | None mountpoints: list[Path] fsroots: list[Path]