You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ValueError is thrown in optimal_sequence_to_bits when generating Aztec codes. In MIXED mode there is no coding of the 2-byte sequence b'\r\n'. Below is the thrown error.
File "/usr/local/lib/python3.10/site-packages/aztec_code_generator.py", line 514, in find_suitable_matrix_size
out_bits = optimal_sequence_to_bits(optimal_sequence)
File "/usr/local/lib/python3.10/site-packages/aztec_code_generator.py", line 403, in optimal_sequence_to_bits
index = code_chars[mode].index(ch)
ValueError: b'\r\n' is not in list
@dlenski I've tried to fix this problem myself, but my knowledge of the Aztec algorithm isn't good enough for that.
The text was updated successfully, but these errors were encountered:
I'm in the same team as @adamsqi and we're suffering a bit from this. Is there anything we can do to move forward @dlenski (except trying to fix find_optimal_sequence that is).
ValueError
is thrown inoptimal_sequence_to_bits
when generating Aztec codes. In MIXED mode there is no coding of the 2-byte sequence b'\r\n'. Below is the thrown error.@dlenski I've tried to fix this problem myself, but my knowledge of the Aztec algorithm isn't good enough for that.
The text was updated successfully, but these errors were encountered: