Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
fixes #54
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalkolar committed May 20, 2021
1 parent b43370a commit a1c27b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mesmerize/viewer/modules/batch_run_modules/CNMFE.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,10 @@ def run(batch_dir: str, UUID: str):
dview.terminate()

for mf in glob(batch_dir + '/memmap-*'):
os.remove(mf)
try:
os.remove(mf)
except: # Windows doesn't like removing the memmaps
pass

end_time = time()
processing_time = (end_time - start_time) / 60
Expand Down

0 comments on commit a1c27b4

Please sign in to comment.