From d29c6fc790d60de19a033f0efd5f4af5e7d75347 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:59:37 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .../contrib/sites/migrations/0003_set_site_domain_and_name.py | 1 + hacktj_live/settings.py | 1 - hacktj_live/urls.py | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hacktj_live/contrib/sites/migrations/0003_set_site_domain_and_name.py b/hacktj_live/contrib/sites/migrations/0003_set_site_domain_and_name.py index f7ed739..0fe543d 100644 --- a/hacktj_live/contrib/sites/migrations/0003_set_site_domain_and_name.py +++ b/hacktj_live/contrib/sites/migrations/0003_set_site_domain_and_name.py @@ -2,6 +2,7 @@ To understand why this file is here, please read: http://cookiecutter-django.readthedocs.io/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django """ + from django.conf import settings from django.db import migrations diff --git a/hacktj_live/settings.py b/hacktj_live/settings.py index 1c23973..01c993c 100644 --- a/hacktj_live/settings.py +++ b/hacktj_live/settings.py @@ -10,7 +10,6 @@ https://docs.djangoproject.com/en/3.0/ref/settings/ """ - from collections import OrderedDict from datetime import datetime from subprocess import run as run_cmd diff --git a/hacktj_live/urls.py b/hacktj_live/urls.py index c5cbe18..a103c31 100644 --- a/hacktj_live/urls.py +++ b/hacktj_live/urls.py @@ -13,6 +13,7 @@ 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ + import allauth from django.contrib import admin