Core: Prevent circular dependency on imports - take 2

This commit is contained in:
Mike Auty
2022-07-03 22:46:31 +01:00
parent 3679134f01
commit b1b4d21bbc
+1 -1
View File
@@ -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