From 4854a8a098572a1ea7e6a36ac04e9b24279dfe55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilhem=20Barth=C3=A9s?= Date: Fri, 27 Sep 2024 17:59:29 +0200 Subject: [PATCH] fix: change import to `django.conf` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Guilhem Barthés --- backend/users/management/commands/sync_users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/users/management/commands/sync_users.py b/backend/users/management/commands/sync_users.py index 292d361a4..08e3a160b 100644 --- a/backend/users/management/commands/sync_users.py +++ b/backend/users/management/commands/sync_users.py @@ -1,4 +1,4 @@ -from django.config import settings +from django.conf import settings from django.contrib.auth import get_user_model from django.contrib.auth.password_validation import validate_password from django.core.exceptions import ValidationError