(list, n)
| 52 | np.savez_compressed(save_path, data) |
| 53 | |
| 54 | def divide_list(list, n): |
| 55 | for i in range(0, len(list), n): |
| 56 | yield list[i:i + n] |
| 57 | |
| 58 | def divide_n(list_in, n): |
| 59 | list_out = [ [] for i in range(n)] |
nothing calls this directly
no outgoing calls
no test coverage detected