__init__.py 280 B

123456789101112131415
  1. from __future__ import annotations
  2. from .base import DummyOutput, Output
  3. from .color_depth import ColorDepth
  4. from .defaults import create_output
  5. __all__ = [
  6. # Base.
  7. "Output",
  8. "DummyOutput",
  9. # Color depth.
  10. "ColorDepth",
  11. # Defaults.
  12. "create_output",
  13. ]