mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
16 lines
582 B
Python
16 lines
582 B
Python
"""Package to handle compatibility checks for pipeline components."""
|
|
|
|
|
|
def is_product_base_type_supported() -> bool:
|
|
"""Check support for product base types.
|
|
|
|
This function checks if the current pipeline supports product base types.
|
|
Once this feature is implemented, it will return True. This should be used
|
|
in places where some kind of backward compatibility is needed to avoid
|
|
breaking existing functionality that relies on the current behavior.
|
|
|
|
Returns:
|
|
bool: True if product base types are supported, False otherwise.
|
|
|
|
"""
|
|
return False
|