diff options
| author | lyova24 <lengthylyova@gmail.com> | 2025-08-05 18:14:25 +0700 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-10-13 17:27:07 -0400 |
| commit | 54cfb5f328177b6fbf4eae827fbcbd757185dc85 (patch) | |
| tree | c669417eeffd8fb3770ebaf3c8ecfc9d3c113caa /django/core/checks/security/base.py | |
| parent | d5543a23d32d6438edae060081a054f617193341 (diff) | |
Replaced multi-level relative imports with absolute imports in django/.
Diffstat (limited to 'django/core/checks/security/base.py')
| -rw-r--r-- | django/core/checks/security/base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/core/checks/security/base.py b/django/core/checks/security/base.py index 7d9631df1e..51f6df7a3b 100644 --- a/django/core/checks/security/base.py +++ b/django/core/checks/security/base.py @@ -1,8 +1,7 @@ from django.conf import settings +from django.core.checks import Error, Tags, Warning, register from django.core.exceptions import ImproperlyConfigured -from .. import Error, Tags, Warning, register - CROSS_ORIGIN_OPENER_POLICY_VALUES = { "same-origin", "same-origin-allow-popups", |
