From 281910ff8e9ae98fa78ee5d26ae3f0b713ccf418 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Sun, 30 Mar 2025 17:54:15 +0200 Subject: [PATCH] Fixed warnings per flake8 7.2.0. https://github.com/PyCQA/flake8/releases/tag/7.2.0 --- django/contrib/gis/db/models/fields.py | 2 -- django/db/backends/base/base.py | 1 - django/utils/autoreload.py | 1 - django/utils/translation/trans_real.py | 1 - tests/asgi/tests.py | 2 +- 5 files changed, 1 insertion(+), 6 deletions(-) diff --git a/django/contrib/gis/db/models/fields.py b/django/contrib/gis/db/models/fields.py index 889c1cfe84..812029de49 100644 --- a/django/contrib/gis/db/models/fields.py +++ b/django/contrib/gis/db/models/fields.py @@ -37,8 +37,6 @@ def get_srid_info(srid, connection): """ from django.contrib.gis.gdal import SpatialReference - global _srid_cache - try: # The SpatialRefSys model for the spatial backend. SpatialRefSys = connection.ops.spatial_ref_sys() diff --git a/django/db/backends/base/base.py b/django/db/backends/base/base.py index a1e7cf8f83..54328c8450 100644 --- a/django/db/backends/base/base.py +++ b/django/db/backends/base/base.py @@ -221,7 +221,6 @@ class BaseDatabaseWrapper: def init_connection_state(self): """Initialize the database connection settings.""" - global RAN_DB_VERSION_CHECK if self.alias not in RAN_DB_VERSION_CHECK: self.check_database_version_supported() RAN_DB_VERSION_CHECK.add(self.alias) diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py index 31a6dfa99d..7ffc61fc92 100644 --- a/django/utils/autoreload.py +++ b/django/utils/autoreload.py @@ -82,7 +82,6 @@ def check_errors(fn): def raise_last_exception(): - global _exception if _exception is not None: raise _exception[1] diff --git a/django/utils/translation/trans_real.py b/django/utils/translation/trans_real.py index 1b163aab81..86fe823bf7 100644 --- a/django/utils/translation/trans_real.py +++ b/django/utils/translation/trans_real.py @@ -287,7 +287,6 @@ def translation(language): """ Return a translation object in the default 'django' domain. """ - global _translations if language not in _translations: _translations[language] = DjangoTranslation(language) return _translations[language] diff --git a/tests/asgi/tests.py b/tests/asgi/tests.py index 66ec4369d9..0b1d3cd608 100644 --- a/tests/asgi/tests.py +++ b/tests/asgi/tests.py @@ -487,7 +487,7 @@ class ASGITest(SimpleTestCase): # A view that will listen for the cancelled error. async def view(request): - nonlocal view_started, view_did_cancel + nonlocal view_did_cancel view_started.set() try: await asyncio.sleep(0.1)