mirror of
https://github.com/django/django.git
synced 2025-11-01 20:31:40 +00:00
Fixed #21266 -- Fixed E201,E202 pep8 warnings.
This commit is contained in:
parent
42a67ec1cd
commit
83b9bfea44
35 changed files with 152 additions and 145 deletions
|
|
@ -36,7 +36,7 @@ class TestUtilsHttp(unittest.TestCase):
|
|||
self.assertEqual(result, 'a=1&b=2&c=3')
|
||||
|
||||
# A dictionary
|
||||
result = http.urlencode({ 'a': 1, 'b': 2, 'c': 3})
|
||||
result = http.urlencode({'a': 1, 'b': 2, 'c': 3})
|
||||
acceptable_results = [
|
||||
# Need to allow all of these as dictionaries have to be treated as
|
||||
# unordered
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue