This commit is contained in:
Paul Kermann
2022-02-10 10:31:18 +02:00
parent 05b4eb22fa
commit edbbc0159f
+1 -1
View File
@@ -115,7 +115,7 @@ class ObjectInterface(metaclass = abc.ABCMeta):
mask = context.layers[object_info.layer_name].address_mask
normalized_offset = object_info.offset & mask
self._vol = collections.ChainMap({}, object_info, {'type_name': type_name, 'offset': normalized_offset}, kwargs)
self._vol = collections.ChainMap({}, {'type_name': type_name, 'offset': normalized_offset}, object_info, kwargs)
self._context = context
def __getattr__(self, attr: str) -> Any: