storage/v2: show partition paths

This commit is contained in:
Dan Bungert 2022-05-12 19:09:42 -06:00
parent 73250b0c95
commit 112b24e6bc
2 changed files with 2 additions and 0 deletions

View File

@ -318,6 +318,7 @@ def _for_client_partition(partition, *, min_size=0):
os=partition.os,
offset=partition.offset,
resize=partition.resize,
path=partition._path(),
mount=partition.mount,
format=partition.format)

View File

@ -269,6 +269,7 @@ class Partition:
os: Optional[OsProber] = None
offset: Optional[int] = None
resize: Optional[bool] = None
path: Optional[str] = None
@attr.s(auto_attribs=True)