fix: sorted imports
This commit is contained in:
@@ -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,4 +1,5 @@
|
||||
import os
|
||||
|
||||
from celery import Celery
|
||||
|
||||
# set the default Django settings module for the 'celery' program.
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import datetime
|
||||
|
||||
from config.settings.environ import * # noqa
|
||||
|
||||
APP_NAME = "Shop"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import os
|
||||
import environ
|
||||
from pathlib import Path
|
||||
|
||||
import environ
|
||||
|
||||
BASE_DIR = Path(".")
|
||||
|
||||
|
||||
@@ -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
@@ -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")),
|
||||
|
||||
Reference in New Issue
Block a user