Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
doc-hex committed Feb 26, 2024
1 parent c4d6eaf commit ebc5f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbqr/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def join_qrs(parts):
data[idx] = p[8:]

missing = set(range(num_parts)) - set(data)
assert not missing, f'parts missing: {missing:r}'
assert not missing, f'parts missing: {missing!r}'

parts = [data[i] for i in range(num_parts)]

Expand Down

0 comments on commit ebc5f7c

Please sign in to comment.