Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 5, 2021
1 parent 3128ed7 commit a91ec57
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion payments/paypal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ def get_transactions_data(self, payment):
#
# See: https://developer.paypal.com/docs/api/payments/v1/#definition-item_list
billing_address = {
"recipient_name": " ".join([payment.billing_first_name, payment.billing_last_name]),
"recipient_name": " ".join(
[payment.billing_first_name, payment.billing_last_name]
),
"line1": payment.billing_address_1,
"line2": payment.billing_address_2,
"city": payment.billing_city,
Expand Down

0 comments on commit a91ec57

Please sign in to comment.