From f2cf47d6c7a183195cbba46d7be984f6a266dc2a 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 20:50:38 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/psf/black: 23.12.1 → 24.1.1](https://github.com/psf/black/compare/23.12.1...24.1.1) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3c3fdf24..fcc11ee3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: isort - repo: https://github.com/psf/black - rev: 23.12.1 + rev: 24.1.1 hooks: - id: black language_version: python3 From 7a6841234f098b3d6c524937063d977f85402020 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 20:50:53 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- actnow/settings.py | 1 - actnow/urls.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/actnow/settings.py b/actnow/settings.py index aac087fd..779b76a3 100644 --- a/actnow/settings.py +++ b/actnow/settings.py @@ -10,7 +10,6 @@ https://docs.djangoproject.com/en/3.2/ref/settings/ """ - from pathlib import Path from typing import List diff --git a/actnow/urls.py b/actnow/urls.py index 61efcf27..031af9fe 100644 --- a/actnow/urls.py +++ b/actnow/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')) """ + from django.contrib import admin from django.urls import include, path