Receive update from the subject. Args: subject (Subject): The subject instance sending the update.
(self, subject: Subject)
| 16 | |
| 17 | class Observer: |
| 18 | def update(self, subject: Subject) -> None: |
| 19 | """ |
| 20 | Receive update from the subject. |
| 21 | |
| 22 | Args: |
| 23 | subject (Subject): The subject instance sending the update. |
| 24 | """ |
| 25 | pass |
| 26 | |
| 27 | |
| 28 | class Subject: |