This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
from abc import abstractmethod, ABCMeta
class IFileService(metaclass=ABCMeta):
@abstractmethod
def save(self, filePath, videoList):
"""
保存到文件,高级参数在init里面写
:param filePath: 文件保存路径
:param videoList: 欲保存成目标的实体类list
:return: void
pass