fix: sorted imports

This commit is contained in:
2024-11-22 08:30:26 +01:00
parent 8783404570
commit f2854ddebf
42 changed files with 100 additions and 146 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
from django.urls import path, include
from drf_spectacular.views import SpectacularSwaggerView, SpectacularRedocView
from django.urls import include, path
from drf_spectacular.views import SpectacularRedocView, SpectacularSwaggerView
from config.api.v1.views import APISchema
+1
View File
@@ -1,4 +1,5 @@
import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
+1
View File
@@ -1,4 +1,5 @@
import datetime
from config.settings.environ import * # noqa
APP_NAME = "Shop"
+1 -1
View File
@@ -1,7 +1,7 @@
import os
import environ
from pathlib import Path
import environ
BASE_DIR = Path(".")
+3 -2
View File
@@ -1,6 +1,7 @@
import string
import random
from django.contrib.auth.models import User, Permission
import string
from django.contrib.auth.models import Permission, User
class TestUserAuthenticationMixin:
+1 -2
View File
@@ -2,8 +2,7 @@ import debug_toolbar
from django.conf import settings
from django.conf.urls.static import static
from django.contrib import admin
from django.urls import path, include
from django.urls import include, path
urlpatterns = [
path("", include("shop.urls")),