Skip to content

Commit d019f5c

Browse files
authored
Numpy Patch (#640)
1 parent 093d1fd commit d019f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

executorlib/standalone/cache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import os
22

33
import cloudpickle
4-
import numpy as np
54

65
group_dict = {
76
"fn": "function",
@@ -25,6 +24,7 @@ def get_cache_data(cache_directory: str) -> list[dict]:
2524
list[dict]: List of dictionaries each representing on of the HDF5 files in the cache directory.
2625
"""
2726
import h5py
27+
import numpy as np
2828

2929
file_lst = []
3030
for task_key in os.listdir(cache_directory):

0 commit comments

Comments
 (0)