♻️ refactor function name

This commit is contained in:
Ondřej Samohel 2025-06-09 13:49:31 +02:00
parent 985546adf7
commit 8cb71fdee4
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
2 changed files with 3 additions and 3 deletions

View file

@ -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",
)

View file

@ -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.