mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #33476 -- Refactored code to strictly match 88 characters line length.
This commit is contained in:
@@ -36,7 +36,8 @@ class ExtraRegressTests(TestCase):
|
||||
# Queryset to match most recent revision:
|
||||
qs = RevisionableModel.objects.extra(
|
||||
where=[
|
||||
"%(table)s.id IN (SELECT MAX(rev.id) FROM %(table)s rev GROUP BY rev.base_id)"
|
||||
"%(table)s.id IN "
|
||||
"(SELECT MAX(rev.id) FROM %(table)s rev GROUP BY rev.base_id)"
|
||||
% {
|
||||
"table": RevisionableModel._meta.db_table,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user