refactor(services): make get_folders() a mandatory part of Service interface

pull/35/head
Houkime 2023-04-17 13:53:51 +00:00 committed by Inex Code
parent ac04425221
commit 0a9848be47
1 changed files with 4 additions and 4 deletions

View File

@ -135,10 +135,10 @@ class Service(ABC):
def get_drive() -> str:
pass
# @staticmethod
# @abstractmethod
# def get_folders() -> str:
# pass
@staticmethod
@abstractmethod
def get_folders() -> str:
pass
@staticmethod
def get_foldername(path: str) -> str: