diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-03-30 17:54:15 +0200 |
|---|---|---|
| committer | Natalia <124304+nessita@users.noreply.github.com> | 2025-04-23 09:37:33 -0300 |
| commit | 0aa0224107f09c02fbb30bdf6bbc4be49df8c0bf (patch) | |
| tree | 4f476e3cbddb03ac324a222e2984d584364e352b | |
| parent | 3215e2a232c7afebd09c7adfc5d972e71512c4d2 (diff) | |
[5.1.x] Fixed warnings per flake8 7.2.0.
https://github.com/PyCQA/flake8/releases/tag/7.2.0
Backport of 281910ff8e9ae98fa78ee5d26ae3f0b713ccf418 from main.
| -rw-r--r-- | django/contrib/gis/db/models/fields.py | 2 | ||||
| -rw-r--r-- | django/db/backends/base/base.py | 1 | ||||
| -rw-r--r-- | django/utils/autoreload.py | 1 | ||||
| -rw-r--r-- | django/utils/translation/trans_real.py | 1 | ||||
| -rw-r--r-- | tests/asgi/tests.py | 2 |
5 files changed, 1 insertions, 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 7a1dfd30d1..a38d073fb4 100644 --- a/django/db/backends/base/base.py +++ b/django/db/backends/base/base.py @@ -220,7 +220,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 1c42330451..e98b160cf4 100644 --- a/django/utils/translation/trans_real.py +++ b/django/utils/translation/trans_real.py @@ -289,7 +289,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 658e9d853e..c54e721fc4 100644 --- a/tests/asgi/tests.py +++ b/tests/asgi/tests.py @@ -485,7 +485,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) |
