mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2025-06-29 00:25:44 +08:00
Lint using autoflake and isort
This commit is contained in:
parent
d126fdbd32
commit
aa52da056c
35 changed files with 128 additions and 115 deletions
|
@ -1,13 +1,15 @@
|
|||
from subscriptions.models import SubscriptionPlan
|
||||
import json
|
||||
import os
|
||||
|
||||
import stripe
|
||||
from accounts.models import CustomUser
|
||||
from .models import UserGroup
|
||||
from subscriptions.tasks import get_user_group_subscription
|
||||
from config.settings import ROOT_DIR, STRIPE_SECRET_KEY
|
||||
from django.db.models.signals import m2m_changed, post_migrate
|
||||
from django.dispatch import receiver
|
||||
from config.settings import STRIPE_SECRET_KEY, ROOT_DIR
|
||||
import os
|
||||
import json
|
||||
import stripe
|
||||
from subscriptions.models import SubscriptionPlan
|
||||
from subscriptions.tasks import get_user_group_subscription
|
||||
|
||||
from .models import UserGroup
|
||||
|
||||
stripe.api_key = STRIPE_SECRET_KEY
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue