From 00a4d5ea4f572ab16ea23216e0dabd232cb5294c Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Tue, 16 Feb 2021 18:03:21 +0000 Subject: [PATCH] Layers: Fix circular import issue --- volatility3/framework/interfaces/layers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/interfaces/layers.py b/volatility3/framework/interfaces/layers.py index 2fc8bffbc..29b2922a7 100644 --- a/volatility3/framework/interfaces/layers.py +++ b/volatility3/framework/interfaces/layers.py @@ -99,7 +99,7 @@ class DataLayerInterface(interfaces.configuration.ConfigurableInterface, metacla accesses a data source and exposes it within volatility. """ - _direct_metadata = interfaces.objects.ReadOnlyMapping({'architecture': 'Unknown', 'os': 'Unknown'}) + _direct_metadata = {'architecture': 'Unknown', 'os': 'Unknown'} def __init__(self, context: 'interfaces.context.ContextInterface',