whisper-webui / src /hooks /progressListener.py
FlippFuzz's picture
Duplicate from aadnk/whisper-webui
5756abf
raw
history blame
198 Bytes
from typing import Union
class ProgressListener:
def on_progress(self, current: Union[int, float], total: Union[int, float]):
self.total = total
def on_finished(self):
pass