(func, items=None)
| 363 | return _read_json_files(paths) |
| 364 | @staticmethod |
| 365 | def get_items_hashes(func, items=None): |
| 366 | |
| 367 | if items is None: |
| 368 | results = get_cached_files(func) |
| 369 | # Return all cached items |
| 370 | return results |
| 371 | else: |
| 372 | # bug fixed, which causes bad cached items order |
| 373 | return [Cache.hash(item) for item in items] |
| 374 | |
| 375 | @staticmethod |
| 376 | def _get_item_modified_time(func, key_data): |
no test coverage detected