diff --git a/client/ayon_core/pipeline/__init__.py b/client/ayon_core/pipeline/__init__.py index 363e8a5218..137736c302 100644 --- a/client/ayon_core/pipeline/__init__.py +++ b/client/ayon_core/pipeline/__init__.py @@ -101,7 +101,7 @@ from .context_tools import ( ) from .compatibility import ( - is_supporting_product_base_type, + is_product_base_type_supported, ) from .workfile import ( @@ -229,5 +229,5 @@ __all__ = ( "uninstall", # Feature detection - "is_supporting_product_base_type", + "is_product_base_type_supported", ) diff --git a/client/ayon_core/pipeline/compatibility.py b/client/ayon_core/pipeline/compatibility.py index de8c8f39a6..f7d48526b7 100644 --- a/client/ayon_core/pipeline/compatibility.py +++ b/client/ayon_core/pipeline/compatibility.py @@ -1,7 +1,7 @@ """Package to handle compatibility checks for pipeline components.""" -def is_supporting_product_base_type() -> bool: +def is_product_base_type_supported() -> bool: """Check support for product base types. This function checks if the current pipeline supports product base types.