mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-05 09:17:38 +02:00
Ensure the config/branch methods always return.
This commit is contained in:
@@ -184,7 +184,7 @@ class HierarchicalDict(collections.abc.Mapping):
|
||||
return self._subdict[key]
|
||||
except KeyError:
|
||||
self._setitem(key = key, value = HierarchicalDict(separator = self.separator), is_data = True)
|
||||
return None
|
||||
return HierarchicalDict()
|
||||
|
||||
def splice(self, key: str, value: 'HierarchicalDict') -> None:
|
||||
"""Splices an existing HierarchicalDictionary under a specific key
|
||||
|
||||
Reference in New Issue
Block a user