Cache entry storing file modification time and content hash.
| 35 | |
| 36 | @dataclass(slots=True) |
| 37 | class CacheEntry: |
| 38 | """Cache entry storing file modification time and content hash.""" |
| 39 | |
| 40 | modification_time: float |
| 41 | md5_hash: str |
| 42 | |
| 43 | |
| 44 | @dataclass(slots=True) |
no outgoing calls