| 9 | class Notifier(object): |
| 10 | |
| 11 | class NotificationClient(object): |
| 12 | |
| 13 | def __init__(self, gather, timestamp): |
| 14 | self.gather = gather |
| 15 | self.timestamp = timestamp |
| 16 | |
| 17 | def run(self): |
| 18 | self.timestamp = self.gather(self.timestamp) |
| 19 | |
| 20 | def __init__(self, profile): |
| 21 | self._logger = logging.getLogger(__name__) |
nothing calls this directly
no outgoing calls
no test coverage detected