Unused cache entry
| 121 | |
| 122 | @dataclass |
| 123 | class Skip: |
| 124 | "Unused cache entry" |
| 125 | size: int |
| 126 | |
| 127 | @property |
| 128 | def name(self) -> str: |
| 129 | return f"unused/{self.size}" |
| 130 | |
| 131 | @property |
| 132 | def properties(self) -> Properties: |
| 133 | return SKIP_PROPERTIES |
| 134 | |
| 135 | |
| 136 | class Flush: |
no outgoing calls
no test coverage detected
searching dependent graphs…