mirror of
https://github.com/django/django.git
synced 2025-12-02 00:01:29 +00:00
Fixed E127 pep8 warnings.
This commit is contained in:
parent
d599b590eb
commit
6685713869
55 changed files with 362 additions and 338 deletions
|
|
@ -452,9 +452,9 @@ class Query(object):
|
|||
'rhs' query.
|
||||
"""
|
||||
assert self.model == rhs.model, \
|
||||
"Cannot combine queries on two different base models."
|
||||
"Cannot combine queries on two different base models."
|
||||
assert self.can_filter(), \
|
||||
"Cannot combine queries once a slice has been taken."
|
||||
"Cannot combine queries once a slice has been taken."
|
||||
assert self.distinct == rhs.distinct, \
|
||||
"Cannot combine a unique query with a non-unique query."
|
||||
assert self.distinct_fields == rhs.distinct_fields, \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue