Skip to content

Commit

Permalink
"Reformatted per new black version"
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Mar 29, 2022
1 parent 974dd9b commit 3f3112a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_miniqr.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def get_mask(mask, i, j):

@staticmethod
def get_error_correct_polynomial(ecc_length):
""" Generate a ecc polynomial"""
"""Generate a ecc polynomial"""
poly = QRPolynomial([1], 0)
for i in range(ecc_length):
poly = poly.multiply(QRPolynomial([1, _gexp(i)], 0))
Expand Down

0 comments on commit 3f3112a

Please sign in to comment.