Skip to content

Commit fc8d4ff

Browse files
committed
cleanup
1 parent 5b24aee commit fc8d4ff

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

pytrickle/frame_processor.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import logging
99
from abc import ABC, abstractmethod
1010
from typing import Optional, Any, Dict, List
11-
from .frames import VideoFrame, AudioFrame, TextOutput
11+
from .frames import VideoFrame, AudioFrame
1212
from . import ErrorCallback
1313
from .state import StreamState, PipelineState
1414

@@ -22,7 +22,6 @@ class FrameProcessor(ABC):
2222
This class provides native async frame processing for PyTrickle. It handles:
2323
- initialization and warmup
2424
- async processing video and audio frames
25-
- text output publishing
2625
2726
Lifecycle:
2827
1. Processing begins automatically when streams start
@@ -124,4 +123,4 @@ def update_params(self, params: Dict[str, Any]):
124123
Args:
125124
params: Dictionary of parameters to update
126125
"""
127-
pass
126+
pass

0 commit comments

Comments
 (0)