Skip to content
Snippets Groups Projects
Commit e4142b6b authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Remove extraneous parameter

parent f51aefb8
No related branches found
No related tags found
1 merge request!494Parallelise gain/mask compression for writing corrected AGIPD files
...@@ -400,7 +400,7 @@ class AgipdCorrections: ...@@ -400,7 +400,7 @@ class AgipdCorrections:
for field in image_fields: for field in image_fields:
if field in compress_fields: if field in compress_fields:
self._write_compressed_frames( self._write_compressed_frames(
image_grp[field], data_dict[field][:n_img], threads=10, image_grp[field], data_dict[field][:n_img],
) )
else: else:
image_grp[field][:] = data_dict[field][:n_img] image_grp[field][:] = data_dict[field][:n_img]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment