Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/oiio write tc attribute #35

Draft
wants to merge 15 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 0 additions & 2 deletions .github/workflows/run_all_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ jobs:

- name: install LabLib
run: |
$env:POETRY_HOME="$repo_root\.poetry"
.\.poetry\bin\poetry.exe lock
.\start.ps1 install

- name: get dependencies
Expand Down
3 changes: 2 additions & 1 deletion lablib/generators/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"""Generator module to be used by Processors and Renderers."""

from .ocio_config import OCIOConfigFileGenerator
from .slate_html import SlateHtmlGenerator
from .slate_html import SlateHtmlGenerator, SlateFillMode

__all__ = [
"OCIOConfigFileGenerator",
"SlateHtmlGenerator",
"SlateFillMode"
]
Loading