Skip to content

Commit

Permalink
Fix typo in last diff (and release) that breaks some use cases
Browse files Browse the repository at this point in the history
  • Loading branch information
pgunn authored Aug 4, 2021
1 parent 1c93b60 commit d18834f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caiman/mmapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def save_portion(pars) -> int:
for f in fnames:
full_f = caiman.paths.fn_relocated(f)
logging.debug(f"Saving portion to {full_f}")
Yr, _, T = load_memmap(full_ff)
Yr, _, T = load_memmap(full_f)
Yr_tot[:, Ttot:Ttot +
T] = np.ascontiguousarray(Yr[idx_start:idx_end], dtype=np.float32) + np.float32(add_to_mov)
Ttot = Ttot + T
Expand Down

0 comments on commit d18834f

Please sign in to comment.