Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/rmqrcode/rmqrcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def _make_final_codewords(self, blocks):
try:
data_codeword = block.get_data_at(i)
except IndexError:
break
continue
else:
final_codewords.append(data_codeword)
self._logger.debug(f"Put QR data codeword {i} : {data_codeword}")
Expand All @@ -403,7 +403,7 @@ def _make_final_codewords(self, blocks):
try:
ecc_codeword = block.get_ecc_at(i)
except IndexError:
break
continue
else:
final_codewords.append(ecc_codeword)
self._logger.debug(f"Put RS data codewords {i} : {ecc_codeword}")
Expand Down