1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Applied Black's 2024 stable style.

https://github.com/psf/black/releases/tag/24.1.0
This commit is contained in:
Mariusz Felisiak
2024-01-26 12:45:07 +01:00
committed by GitHub
parent 3f6d939c62
commit 305757aec1
235 changed files with 809 additions and 602 deletions

View File

@@ -2,6 +2,7 @@
The tests are shared with contenttypes_tests and so shouldn't import or
reference any models directly. Subclasses should inherit django.test.TestCase.
"""
from operator import attrgetter
@@ -117,8 +118,11 @@ class BaseOrderWithRespectToTests:
return "other"
with self.settings(DATABASE_ROUTERS=[WriteToOtherRouter()]):
with self.assertNumQueries(0, using="default"), self.assertNumQueries(
1,
using="other",
with (
self.assertNumQueries(0, using="default"),
self.assertNumQueries(
1,
using="other",
),
):
self.q1.set_answer_order([3, 1, 2, 4])