Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmymathews committed Jun 21, 2024
1 parent 3381b30 commit f179761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spatialprofilingtoolbox/db/accessors/cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _get_phenotype_data(
raise ValueError(message)
bytes_iterator = index_and_expressions.__iter__()
masks = dict(
(int.from_bytes(batch[0:8], byteorder='little'), bytes(bytes(batch[8:16])))
(int.from_bytes(batch[0:8], byteorder='little'), bytes(batch[8:16]))
for batch in self._batched(bytes_iterator, 16)
)
if cell_identifiers == ():
Expand Down

0 comments on commit f179761

Please sign in to comment.