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

Rework HTML slate renderer. #27

Open
wants to merge 13 commits into
base: develop
Choose a base branch
from
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