(self, priority, from_nr)
| 24 | class SMS_Notification(Notification_Service): |
| 25 | |
| 26 | def __init__(self, priority, from_nr): |
| 27 | super().__init__(priority) |
| 28 | self.from_nr = from_nr |
| 29 | |
| 30 | def send(self, to_nr, message): |
| 31 | super().send(self.from_nr, to_nr, message) |