Fixed subjects

This commit is contained in:
2023-04-15 21:41:49 +02:00
parent 7001b23b31
commit e5fd7df519
7 changed files with 155 additions and 23 deletions

View File

@@ -1,11 +1,11 @@
from abc import abstractmethod, ABC
from abc import abstractmethod
from cpl_core.type import T
class Observer(ABC):
class Observer:
def __init__(self):
ABC.__init__(self)
pass
@abstractmethod
def next(self, value: T):