(self, updates: List[Update], timestamp: int)
| 47 | self.history.append(update) |
| 48 | |
| 49 | def update(self, updates: List[Update], timestamp: int): |
| 50 | if len(updates) > 0: |
| 51 | self.validate(timestamp) |
| 52 | self.timestamp = timestamp |
| 53 | for update in updates: |
| 54 | self.process(update) |
no test coverage detected