mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-08 02:37:39 +02:00
Fix exception. Although it will be auto-instantiated it's better to explicitily use the exception instance
This commit is contained in:
@@ -133,7 +133,7 @@ class ObjectInterface(metaclass=abc.ABCMeta):
|
||||
|
||||
def __getattr__(self, attr: str) -> Any:
|
||||
"""Method for ensuring volatility members can be returned."""
|
||||
raise AttributeError
|
||||
raise AttributeError()
|
||||
|
||||
@property
|
||||
def vol(self) -> ReadOnlyMapping:
|
||||
|
||||
Reference in New Issue
Block a user