From acfedd6d9cbbdca0a8058cec5cefc303455f591e Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 24 Mar 2025 23:23:22 +0000 Subject: [PATCH] Sets slots to none has no effect on memory as long as __dict__ isn't instanciated --- volatility3/framework/interfaces/objects.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/volatility3/framework/interfaces/objects.py b/volatility3/framework/interfaces/objects.py index 7f4667b4e..e77a5893c 100644 --- a/volatility3/framework/interfaces/objects.py +++ b/volatility3/framework/interfaces/objects.py @@ -128,8 +128,6 @@ class ObjectInterface(metaclass=abc.ABCMeta): """A base object required to be the ancestor of every object used in volatility.""" - __slots__ = () - def __init__( self, context: "interfaces.context.ContextInterface",