Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 58129ca

Browse files
committed
lint
1 parent 329fcfd commit 58129ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/billing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,9 @@ def update_billing_address(self, owner: Owner, name, billing_address):
732732
default_payment_method = customer.invoice_settings.default_payment_method
733733
log.info(f"Retrieved default payment method: {default_payment_method}")
734734

735-
log.info(f"Modifying payment method with billing details: name={name}, address={billing_address}")
735+
log.info(
736+
f"Modifying payment method with billing details: name={name}, address={billing_address}"
737+
)
736738
stripe.PaymentMethod.modify(
737739
default_payment_method,
738740
billing_details={"name": name, "address": billing_address},

0 commit comments

Comments
 (0)