ENCOA-311
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import logging
|
||||
from typing import List
|
||||
|
||||
from ielts_be.controllers import ISpeakingController
|
||||
from ielts_be.services import ISpeakingService, IVideoGeneratorService
|
||||
@@ -11,7 +12,7 @@ class SpeakingController(ISpeakingController):
|
||||
self._vid_gen = vid_gen
|
||||
self._logger = logging.getLogger(__name__)
|
||||
|
||||
async def get_speaking_part(self, task: int, topic: str, second_topic: str, difficulty: str):
|
||||
async def get_speaking_part(self, task: int, topic: str, second_topic: str, difficulty: List[str]):
|
||||
return await self._service.get_speaking_part(task, topic, second_topic, difficulty)
|
||||
|
||||
async def get_avatars(self):
|
||||
|
||||
Reference in New Issue
Block a user