From cf7dd52ad8739bcd7e0690fd1134966105b009bb Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 21:06:25 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/checkout/settings.py | 1 + src/checkout/urls.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/checkout/settings.py b/src/checkout/settings.py index 24ebf94..04a4504 100644 --- a/src/checkout/settings.py +++ b/src/checkout/settings.py @@ -9,6 +9,7 @@ https://docs.djangoproject.com/en/3.1/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/3.1/ref/settings/ """ + import os from pathlib import Path diff --git a/src/checkout/urls.py b/src/checkout/urls.py index ff117d3..61ed6a9 100644 --- a/src/checkout/urls.py +++ b/src/checkout/urls.py @@ -13,6 +13,7 @@ Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('checkout/', include('checkout.urls')) """ + from django.conf.urls.static import static from django.contrib import admin from django.urls import include, path