Saves the IP details cache to a file.
(cache: dict)
| 42 | |
| 43 | |
| 44 | def _save_cache(cache: dict): |
| 45 | """Saves the IP details cache to a file.""" |
| 46 | return get_botasaurus_storage().set_item("ip_details_cache", cache) |
| 47 | |
| 48 | |
| 49 | def reorganize_dict_by_importance(input_dict): |
no test coverage detected