chore: remove unused imports

This commit is contained in:
Pablo Moreno
2025-01-13 00:06:06 +01:00
parent 074332092e
commit 8a1243023f
8 changed files with 0 additions and 14 deletions
-2
View File
@@ -1,3 +1 @@
from django.test import TestCase
# Create your tests here.
-2
View File
@@ -1,3 +1 @@
from django.shortcuts import render
# Create your views here.
-1
View File
@@ -8,7 +8,6 @@ from django.contrib.auth.password_validation import (
)
from rest_framework import serializers
from rest_framework.exceptions import ValidationError
from rest_framework_simplejwt.serializers import TokenObtainPairSerializer
User = get_user_model()
-2
View File
@@ -1,3 +1 @@
from django.db import models
# Create your models here.
-2
View File
@@ -1,3 +1 @@
from django.test import TestCase
# Create your tests here.
-2
View File
@@ -1,5 +1,3 @@
from django.urls import path
app_name = "users"
-2
View File
@@ -1,8 +1,6 @@
from django import forms
from django.forms import widgets
from shop.models import CustomerAddress
class CartItemForm(forms.Form):
"""
-1
View File
@@ -1,4 +1,3 @@
from django.contrib.auth.models import User
from django.test import TestCase
from django.urls import reverse