(func, hash)
| 345 | |
| 346 | @staticmethod |
| 347 | def generate_cache_path_from_hash(func, hash): |
| 348 | func = getfnname(func) |
| 349 | return relative_path(f'{Cache.cache_directory}{func}/{hash}.json') |
| 350 | |
| 351 | @staticmethod |
| 352 | def get_random_items(func, n=5): |
no test coverage detected