Skip to content

Commit

Permalink
lint fixup: extraneous additional space after operator
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Dec 17, 2023
1 parent e1fc8fc commit 482cfce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def customer_reference(self):
if self.currency == "EUR":
order_id = f"{event_year()}{self.id:08d}"
order_check_digits = mod_97_10.calc_check_digits(f"{order_id}RF")
customer_reference = f"RF{order_check_digits}{order_id}"
customer_reference = f"RF{order_check_digits}{order_id}"
assert iso11649.validate(customer_reference)
return customer_reference
else:
Expand Down

0 comments on commit 482cfce

Please sign in to comment.