stringify not imported types

This commit is contained in:
Jakub Trllo 2025-06-27 13:57:48 +02:00
parent 8ad408c50f
commit 06186a2ef0

View file

@ -150,13 +150,13 @@ class TemplateItem:
anatomy: Anatomy
template: str
template_data: dict[str, Any]
template_object: AnatomyTemplateItem
template_object: "AnatomyTemplateItem"
def __init__(self,
anatomy: Anatomy,
anatomy: "Anatomy",
template: str,
template_data: dict[str, Any],
template_object: AnatomyTemplateItem):
template_object: "AnatomyTemplateItem"):
"""Initialize TemplateItem.
Args: