fix implicit int to string conversion no working on python 3.8.10
This commit is contained in:
parent
d59bd97065
commit
d3a77329cb
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ class LazyUnpickler(pickle.Unpickler):
|
||||||
assert isinstance(pid[1], LazyStorageKind)
|
assert isinstance(pid[1], LazyStorageKind)
|
||||||
data_type = pid[1].data_type
|
data_type = pid[1].data_type
|
||||||
filename_stem = pid[2]
|
filename_stem = pid[2]
|
||||||
filename = self.data_base_path + '/' + filename_stem
|
filename = f'{self.data_base_path}/{filename_stem}'
|
||||||
info = self.zip_file.getinfo(filename)
|
info = self.zip_file.getinfo(filename)
|
||||||
|
|
||||||
def load(offset: int, elm_count: int) -> NDArray:
|
def load(offset: int, elm_count: int) -> NDArray:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue