EN: Notify all observers about an event. RU: Уведомляет всех наблюдателей о событии.
(self)
| 56 | |
| 57 | @abstractmethod |
| 58 | def notify(self) -> None: |
| 59 | """ |
| 60 | EN: Notify all observers about an event. |
| 61 | |
| 62 | RU: Уведомляет всех наблюдателей о событии. |
| 63 | """ |
| 64 | pass |
| 65 | |
| 66 | |
| 67 | class ConcreteSubject(Subject): |
nothing calls this directly
no outgoing calls
no test coverage detected