Skip to content

Commit

Permalink
Fix issue with dev release and last refactor of pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
pgunn committed Mar 5, 2024
1 parent a53973a commit e27ead4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caiman/base/movies.py
Original file line number Diff line number Diff line change
Expand Up @@ -2261,7 +2261,7 @@ def get_file_size(file_name, var_name_hdf5:str='mov') -> tuple[tuple, Union[int,
dims[0], dims[1] = pims_movie.frame_shape[0:2]
elif extension == '.mmap':
filename = os.path.split(file_name)[-1]
Yr, dims, T = load_memmap(os.path.join(
Yr, dims, T = caiman.mmapping.load_memmap(os.path.join(
os.path.split(file_name)[0], filename))
elif extension in ('.h5', '.hdf5', '.nwb', 'n5', 'zarr'):
# FIXME this doesn't match the logic in load()
Expand Down

0 comments on commit e27ead4

Please sign in to comment.