fix: sorted imports
This commit is contained in:
+3
-3
@@ -1,14 +1,14 @@
|
||||
from django.http.response import HttpResponse
|
||||
from django.shortcuts import get_object_or_404, redirect, render
|
||||
from django.urls import reverse
|
||||
from django.views.decorators.csrf import csrf_exempt
|
||||
from django.shortcuts import render, get_object_or_404, redirect
|
||||
from django.http.response import HttpResponse
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from tpv.forms import UpdateEmailForm
|
||||
from tpv.models import PaymentTransaction
|
||||
from tpv.redsys import RedsysClient
|
||||
from tpv.utils import pay_transaction, validate_payment_for_transaction
|
||||
from tpv.signals import redsys_payment_accepted, redsys_payment_rejected
|
||||
from tpv.utils import pay_transaction, validate_payment_for_transaction
|
||||
|
||||
|
||||
def payment_accepted(request, transaction):
|
||||
|
||||
Reference in New Issue
Block a user