(func)
| 526 | |
| 527 | @staticmethod |
| 528 | def print_cached_items_count(func): |
| 529 | cached_items_count = len(get_cached_files(func)) |
| 530 | nm = getfnname(func) |
| 531 | print(f"Number of cached items for {nm}: {cached_items_count}") |
| 532 | return cached_items_count |
| 533 | |
| 534 | @staticmethod |
| 535 | def get_cached_items_count(func): |
nothing calls this directly
no test coverage detected