From f95bb36a1d755756a054c70835cdd995744ed409 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 6 Feb 2024 17:56:40 +0100 Subject: [PATCH] add 'ILaunchHookPaths' back --- client/ayon_core/modules/interfaces.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/ayon_core/modules/interfaces.py b/client/ayon_core/modules/interfaces.py index 26adb02f91..4b114b7a0e 100644 --- a/client/ayon_core/modules/interfaces.py +++ b/client/ayon_core/modules/interfaces.py @@ -7,6 +7,7 @@ from ayon_core.addon.interfaces import ( ) ITrayModule = ITrayAddon +ILaunchHookPaths = object __all__ = ( @@ -16,4 +17,5 @@ __all__ = ( "ITrayService", "IHostAddon", "ITrayModule", + "ILaunchHookPaths", )