Print cache miss/invalidation message in yellow with warning (global function).
(message: str)
| 139 | |
| 140 | |
| 141 | def print_cache_miss(message: str) -> None: |
| 142 | """Print cache miss/invalidation message in yellow with warning (global function).""" |
| 143 | _get_color_output().print_cache_miss(message) |
| 144 | |
| 145 | |
| 146 | if __name__ == "__main__": |
no test coverage detected