Improve multi modul support and refactor

This commit is contained in:
mesonium
2024-07-02 20:05:45 +02:00
committed by hueso
parent aff69e5b40
commit b0adecef7a
6 changed files with 111 additions and 92 deletions

View File

@@ -16,8 +16,6 @@
from abc import ABC, abstractmethod
from pathlib import Path
from gajim.gtk.const import Setting
from ..helper import Results
@@ -26,7 +24,3 @@ class Model(ABC):
@abstractmethod
def transcribe(self, result: Results, audio_file: Path) -> str:
return ''
@abstractmethod
def on_setting(self, setting: Setting):
pass