Fixed a number of flake8 errors -- particularly around unused imports and local variables
This commit is contained in:
parent
a9589dd280
commit
2530735d2d
|
@ -58,7 +58,7 @@ class RemoteUserMiddleware(object):
|
|||
auth.BACKEND_SESSION_KEY, ''))
|
||||
if isinstance(stored_backend, RemoteUserBackend):
|
||||
auth.logout(request)
|
||||
except ImproperlyConfigured as e:
|
||||
except ImproperlyConfigured:
|
||||
# backend failed to load
|
||||
auth.logout(request)
|
||||
return
|
||||
|
|
|
@ -6,7 +6,6 @@ from django.core import validators
|
|||
from django.db import models
|
||||
from django.db.models.manager import EmptyManager
|
||||
from django.utils.crypto import get_random_string
|
||||
from django.utils.http import urlquote
|
||||
from django.utils import six
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
from django.utils import timezone
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django import forms
|
||||
from django.utils import six
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
# While this couples the geographic forms to the GEOS library,
|
||||
|
@ -85,7 +84,7 @@ class GeometryField(forms.Field):
|
|||
try:
|
||||
data = self.to_python(data)
|
||||
initial = self.to_python(initial)
|
||||
except ValidationError:
|
||||
except forms.ValidationError:
|
||||
return True
|
||||
|
||||
# Only do a geographic comparison if both values are available
|
||||
|
|
|
@ -424,10 +424,6 @@ class FileSessionTests(SessionTestsMixin, unittest.TestCase):
|
|||
# Make sure the file backend checks for a good storage dir
|
||||
self.assertRaises(ImproperlyConfigured, self.backend)
|
||||
|
||||
def test_invalid_key_backslash(self):
|
||||
# This key should be refused and a new session should be created
|
||||
self.assertTrue(self.backend("a\\b\\c").load())
|
||||
|
||||
def test_invalid_key_backslash(self):
|
||||
# Ensure we don't allow directory-traversal.
|
||||
# This is tested directly on _key_to_file, as load() will swallow
|
||||
|
|
|
@ -85,7 +85,7 @@ def parse_backend_conf(backend, **kwargs):
|
|||
else:
|
||||
try:
|
||||
# Trying to import the given backend, in case it's a dotted path
|
||||
backend_cls = import_by_path(backend)
|
||||
import_by_path(backend)
|
||||
except ImproperlyConfigured as e:
|
||||
raise InvalidCacheBackendError("Could not find backend '%s': %s" % (
|
||||
backend, e))
|
||||
|
|
|
@ -6,7 +6,6 @@ import os
|
|||
import warnings
|
||||
import zipfile
|
||||
from optparse import make_option
|
||||
import warnings
|
||||
|
||||
from django.conf import settings
|
||||
from django.core import serializers
|
||||
|
|
|
@ -9,7 +9,6 @@ from django.conf import settings
|
|||
from django.core.management.base import CommandError
|
||||
from django.db import models
|
||||
from django.db.models import get_models
|
||||
from django.utils._os import upath
|
||||
|
||||
|
||||
def sql_create(app, style, connection):
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import copy
|
||||
import datetime
|
||||
from django.utils import six
|
||||
|
||||
from django.db.backends.schema import BaseDatabaseSchemaEditor
|
||||
from django.db.utils import DatabaseError
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import hashlib
|
||||
import operator
|
||||
import sys
|
||||
|
||||
from django.db.backends.creation import BaseDatabaseCreation
|
||||
from django.db.backends.util import truncate_name
|
||||
|
|
|
@ -289,7 +289,8 @@ class BaseFormSet(object):
|
|||
# We loop over every form.errors here rather than short circuiting on the
|
||||
# first failure to make sure validation gets triggered for every form.
|
||||
forms_valid = True
|
||||
err = self.errors
|
||||
# This triggers a full clean.
|
||||
self.errors
|
||||
for i in range(0, self.total_form_count()):
|
||||
form = self.forms[i]
|
||||
if self.can_delete:
|
||||
|
|
|
@ -54,7 +54,6 @@ class CsrfTokenNode(Node):
|
|||
else:
|
||||
# It's very probable that the token is missing because of
|
||||
# misconfiguration, so we raise a warning
|
||||
from django.conf import settings
|
||||
if settings.DEBUG:
|
||||
warnings.warn("A {% csrf_token %} was used in a template, but the context did not provide the value. This is usually caused by not using RequestContext.")
|
||||
return ''
|
||||
|
|
|
@ -91,8 +91,6 @@ class ClientHandler(BaseHandler):
|
|||
super(ClientHandler, self).__init__(*args, **kwargs)
|
||||
|
||||
def __call__(self, environ):
|
||||
from django.conf import settings
|
||||
|
||||
# Set up middleware if needed. We couldn't do this earlier, because
|
||||
# settings weren't available.
|
||||
if self._request_middleware is None:
|
||||
|
|
|
@ -210,7 +210,6 @@ def urlize(text, trim_url_limit=None, nofollow=False, autoescape=False):
|
|||
safe_input = isinstance(text, SafeData)
|
||||
words = word_split_re.split(force_text(text))
|
||||
for i, word in enumerate(words):
|
||||
match = None
|
||||
if '.' in word or '@' in word or ':' in word:
|
||||
# Deal with punctuation.
|
||||
lead, middle, trail = '', word, ''
|
||||
|
|
Loading…
Reference in New Issue