Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions colour_clf_io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@
__change_version__ = "1"
__version__ = f"{__major_version__}.{__minor_version__}.{__change_version__}"

try:
from colour_clf_io.processing import CLFProcessList

__all__ += ["CLFProcessList"]
except ImportError:
pass


def read_clf_from_file(path: str | Path) -> ProcessList:
"""
Expand Down
Loading
Loading