diff --git a/src/antsibull/types.py b/src/antsibull/types.py index bc3dc787..1b6c9a86 100644 --- a/src/antsibull/types.py +++ b/src/antsibull/types.py @@ -118,3 +118,11 @@ def make_collection_mapping(mapping: dict[str, _T]) -> dict[CollectionName, _T]: Convert `str` keys in a mapping to `CollectionName` objects """ return {CollectionName(collection): value for collection, value in mapping.items()} + + +__all__ = ( + "CollectionName", + "add_yaml_type", + "add_dataclass_yaml_type", + "make_collection_mapping", +)