From ea5d5cfc7129819f2c2aa02577aa41d361571221 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 22 May 2025 17:03:53 +0200 Subject: [PATCH] added missing imports --- client/ayon_core/tools/launcher/abstract.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/client/ayon_core/tools/launcher/abstract.py b/client/ayon_core/tools/launcher/abstract.py index 36dc696cf6..a57f539261 100644 --- a/client/ayon_core/tools/launcher/abstract.py +++ b/client/ayon_core/tools/launcher/abstract.py @@ -4,6 +4,13 @@ import copy from abc import ABC, abstractmethod from typing import Optional, Any +from ayon_core.tools.common_models import ( + ProjectItem, + FolderItem, + FolderTypeItem, + TaskItem, + TaskTypeItem, +) class ActionItem: """Item representing single action to trigger.