Fix type hint

This commit is contained in:
Roy Nieterau 2025-06-17 23:26:30 +02:00
parent bcca8ca8c1
commit d583279c6d

View file

@ -1,7 +1,7 @@
from __future__ import annotations
import os
import logging
from typing import Any
from typing import Any, Type
from abc import abstractmethod
from ayon_core.settings import get_project_settings
@ -268,7 +268,7 @@ class LoaderHookPlugin:
@classmethod
@abstractmethod
def is_compatible(cls, Loader: LoaderPlugin) -> bool:
def is_compatible(cls, Loader: Type[LoaderPlugin]) -> bool:
pass
@abstractmethod