(list_info: list, file_name: str)
| 92 | plt.show() |
| 93 | |
| 94 | def write_pickle(list_info: list, file_name: str): |
| 95 | with open(file_name, 'wb') as f: |
| 96 | pickle.dump(list_info, f) |
| 97 | |
| 98 | def read_pickle(file_name: str) -> list: |
| 99 | with open(file_name, 'rb') as f: |
nothing calls this directly
no outgoing calls
no test coverage detected