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

Commit f5338d1

Browse files
lint
1 parent 4073b1e commit f5338d1

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

services/billing.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
import stripe
77
from dateutil.relativedelta import relativedelta
88
from django.conf import settings
9-
from shared.plan.constants import (
10-
PlanBillingRate,
11-
TierName,
12-
)
9+
from shared.plan.constants import PlanBillingRate, TierName
1310
from shared.plan.service import PlanService
1411

1512
from billing.constants import REMOVED_INVOICE_STATUSES
@@ -744,7 +741,7 @@ def get_unverified_payment_methods(self, owner: Owner):
744741
payment_intents = stripe.PaymentIntent.list(
745742
customer=owner.stripe_customer_id,
746743
limit=20,
747-
starting_after=starting_after
744+
starting_after=starting_after,
748745
)
749746
for intent in payment_intents.data or []:
750747
if (
@@ -771,7 +768,7 @@ def get_unverified_payment_methods(self, owner: Owner):
771768
setup_intents = stripe.SetupIntent.list(
772769
customer=owner.stripe_customer_id,
773770
limit=20,
774-
starting_after=starting_after
771+
starting_after=starting_after,
775772
)
776773
for intent in setup_intents.data:
777774
if (

0 commit comments

Comments
 (0)