From db9f287cb146052d28ad75f1b9787b0131b46e8a Mon Sep 17 00:00:00 2001 From: Gustavo Moreira Date: Sat, 30 Apr 2022 15:25:55 +1000 Subject: [PATCH] Unrelated to this PR. Removed unused import. --- volatility3/framework/objects/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/objects/__init__.py b/volatility3/framework/objects/__init__.py index e0f927ec9..e91b0cd4e 100644 --- a/volatility3/framework/objects/__init__.py +++ b/volatility3/framework/objects/__init__.py @@ -9,7 +9,7 @@ import struct from typing import Any, ClassVar, Dict, Iterable, List, Optional, Tuple, Type, Union as TUnion, overload from volatility3.framework import constants, interfaces -from volatility3.framework.objects import templates, utility +from volatility3.framework.objects import templates vollog = logging.getLogger(__name__)