From 64e9a9397250b368708245ca461f4077137329dd Mon Sep 17 00:00:00 2001 From: Scott Schneider Date: Mon, 3 Nov 2025 11:45:56 -0800 Subject: [PATCH] Add encoders to top-level import list --- src/torchcodec/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torchcodec/__init__.py b/src/torchcodec/__init__.py index 2b6c9fb3e..c0f4c2b6d 100644 --- a/src/torchcodec/__init__.py +++ b/src/torchcodec/__init__.py @@ -7,7 +7,7 @@ # Note: usort wants to put Frame and FrameBatch after decoders and samplers, # but that results in circular import. from ._frame import AudioSamples, Frame, FrameBatch # usort:skip # noqa -from . import decoders, samplers # noqa +from . import decoders, encoders, samplers # noqa try: # Note that version.py is generated during install.