pickle.dump(obj, path)
(obj, path)
| 438 | |
| 439 | |
| 440 | def pickle_save(obj, path): |
| 441 | """pickle.dump(obj, path)""" |
| 442 | with open(path, "wb") as f: |
| 443 | return pickle.dump(obj, f) |
| 444 | |
| 445 | |
| 446 | def flatten_list(summary_ids: List[List]): |
nothing calls this directly
no outgoing calls
no test coverage detected