Make type field in lsblk required (#4655)

This commit is contained in:
codefiles 2026-07-23 08:07:05 -04:00 committed by GitHub
parent 7fd4b4382b
commit 865ff3f65a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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]