diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-22 09:31:43 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-22 09:51:39 -0400 |
| commit | 1597503a017a9ced422a81d314cb4097d53c3dfd (patch) | |
| tree | e5883611fb6d928482d24db1c4d796126250fef4 /django/utils/datastructures.py | |
| parent | 0d0f4f020afe516f23fd2305f13ff0a6a539b344 (diff) | |
Fixed E221 pep8 warnings.
Diffstat (limited to 'django/utils/datastructures.py')
| -rw-r--r-- | django/utils/datastructures.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py index fe0fc164e9..d73f4aa546 100644 --- a/django/utils/datastructures.py +++ b/django/utils/datastructures.py @@ -490,19 +490,19 @@ class ImmutableList(tuple): raise AttributeError(self.warning) # All list mutation functions complain. - __delitem__ = complain + __delitem__ = complain __delslice__ = complain - __iadd__ = complain - __imul__ = complain - __setitem__ = complain + __iadd__ = complain + __imul__ = complain + __setitem__ = complain __setslice__ = complain - append = complain - extend = complain - insert = complain - pop = complain - remove = complain - sort = complain - reverse = complain + append = complain + extend = complain + insert = complain + pop = complain + remove= complain + sort = complain + reverse = complain class DictWrapper(dict): """ |
