Skip to content

Commit

Permalink
mypy test successfully fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Basso committed Aug 2, 2024
1 parent 9628f98 commit 19ed099
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spectrum_io/spectral_library/spectral_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def async_write(
content = queue.get()
if content is None:
break
self._write(out, *content, custom_mods=custom_mods)
data, metadata = content
self._write(out, data=data, metadata=metadata, custom_mods=custom_mods)
progress.value += 1

def _fragment_filter_passed(
Expand Down

0 comments on commit 19ed099

Please sign in to comment.