Removed service abc

This commit is contained in:
2021-03-29 13:29:26 +02:00
parent d0e3e1792f
commit f3be927440
10 changed files with 25 additions and 44 deletions

View File

@@ -1,13 +1,11 @@
from abc import abstractmethod
from cpl.dependency_injection.service_abc import ServiceABC
from abc import abstractmethod, ABC
class CommandABC(ServiceABC):
class CommandABC(ABC):
@abstractmethod
def __init__(self):
ServiceABC.__init__(self)
ABC.__init__(self)
@abstractmethod
def run(self, args: list[str]): pass