(self, collect_history: bool = False)
| 10 | |
| 11 | class State: |
| 12 | def __init__(self, collect_history: bool = False): |
| 13 | self.state = {} |
| 14 | self.timestamp = 0 |
| 15 | self.valid = True |
| 16 | self.history = [] if collect_history else None |
| 17 | |
| 18 | def get_state(self) -> List[T]: |
| 19 | result = [] |
nothing calls this directly
no outgoing calls
no test coverage detected