summaryrefslogtreecommitdiff
path: root/django/utils/autoreload.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-03-30 17:54:15 +0200
committerGitHub <noreply@github.com>2025-03-30 17:54:15 +0200
commit281910ff8e9ae98fa78ee5d26ae3f0b713ccf418 (patch)
tree04f9a772a206aa4f3a2071a52489956277142d23 /django/utils/autoreload.py
parentc1a4fccf53437e480c42648f67277fb7e63ed4ab (diff)
Fixed warnings per flake8 7.2.0.
https://github.com/PyCQA/flake8/releases/tag/7.2.0
Diffstat (limited to 'django/utils/autoreload.py')
-rw-r--r--django/utils/autoreload.py1
1 files changed, 0 insertions, 1 deletions
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]