| 4 | T = TypeVar('T') |
| 5 | |
| 6 | class Update: |
| 7 | def __init__(self, value: T, diff: int): |
| 8 | self.value = value |
| 9 | self.diff = diff |
| 10 | |
| 11 | class State: |
| 12 | def __init__(self, collect_history: bool = False): |
nothing calls this directly
no outgoing calls
no test coverage detected