From 06186a2ef04b43da22b1c80f6913a140218781b7 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Fri, 27 Jun 2025 13:57:48 +0200 Subject: [PATCH] stringify not imported types --- client/ayon_core/plugins/publish/integrate_traits.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/ayon_core/plugins/publish/integrate_traits.py b/client/ayon_core/plugins/publish/integrate_traits.py index 3fbf57be88..45f32be4a0 100644 --- a/client/ayon_core/plugins/publish/integrate_traits.py +++ b/client/ayon_core/plugins/publish/integrate_traits.py @@ -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: