(list_info: list, file_name: str)
| 103 | |
| 104 | |
| 105 | def write_pickle(list_info: list, file_name: str): |
| 106 | with open(file_name, 'wb') as f: |
| 107 | pickle.dump(list_info, f) |
| 108 | |
| 109 | |
| 110 | def read_pickle(file_name: str) -> list: |
nothing calls this directly
no outgoing calls
no test coverage detected