From b1b4d21bbcfd0095a10d363e99d8b4bcbfb1a015 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 3 Jul 2022 22:46:31 +0100 Subject: [PATCH] Core: Prevent circular dependency on imports - take 2 --- volatility3/framework/interfaces/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/interfaces/objects.py b/volatility3/framework/interfaces/objects.py index d1f442d69..fcf3c8d6c 100644 --- a/volatility3/framework/interfaces/objects.py +++ b/volatility3/framework/interfaces/objects.py @@ -312,7 +312,7 @@ class Template: offset.""" @abc.abstractmethod - def child_template(self, child: str) -> interfaces.objects.Template: + def child_template(self, child: str) -> 'interfaces.objects.Template': """Returns the `child` member template from its parent.""" @abc.abstractmethod