summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd/otg/storage.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/plugins/msd/otg/storage.py')
-rw-r--r--kvmd/plugins/msd/otg/storage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/plugins/msd/otg/storage.py b/kvmd/plugins/msd/otg/storage.py
index 32f52a2d..f3679741 100644
--- a/kvmd/plugins/msd/otg/storage.py
+++ b/kvmd/plugins/msd/otg/storage.py
@@ -198,12 +198,12 @@ class Storage(_StorageDc):
@property
def images(self) -> dict[str, Image]:
assert self.__images is not None
- return self.__images
+ return dict(self.__images)
@property
def parts(self) -> dict[str, _Part]:
assert self.__parts is not None
- return self.__parts
+ return dict(self.__parts)
async def reload(self) -> None:
self.__watchable_paths = None