mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Sorted imports with isort; refs #23860.
This commit is contained in:
parent
388d986b8a
commit
0ed7d15563
793 changed files with 2551 additions and 2333 deletions
|
@ -1,24 +1,28 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from copy import deepcopy
|
||||
import datetime
|
||||
import uuid
|
||||
from copy import deepcopy
|
||||
|
||||
from django.core.exceptions import FieldError
|
||||
from django.db import connection, transaction, DatabaseError
|
||||
from django.db import DatabaseError, connection, transaction
|
||||
from django.db.models import TimeField, UUIDField
|
||||
from django.db.models.aggregates import Avg, Count, Max, Min, StdDev, Sum, Variance
|
||||
from django.db.models.expressions import (
|
||||
Case, Col, Date, DateTime, F, Func, OrderBy,
|
||||
Random, RawSQL, Ref, Value, When
|
||||
from django.db.models.aggregates import (
|
||||
Avg, Count, Max, Min, StdDev, Sum, Variance,
|
||||
)
|
||||
from django.db.models.expressions import (
|
||||
F, Case, Col, Date, DateTime, Func, OrderBy, Random, RawSQL, Ref, Value,
|
||||
When,
|
||||
)
|
||||
from django.db.models.functions import (
|
||||
Coalesce, Concat, Length, Lower, Substr, Upper,
|
||||
)
|
||||
from django.db.models.functions import Coalesce, Concat, Length, Lower, Substr, Upper
|
||||
from django.test import TestCase, skipIfDBFeature, skipUnlessDBFeature
|
||||
from django.test.utils import Approximate
|
||||
from django.utils import six
|
||||
from django.utils.timezone import utc
|
||||
|
||||
from .models import Company, Employee, Number, Experiment, Time, UUID
|
||||
from .models import UUID, Company, Employee, Experiment, Number, Time
|
||||
|
||||
|
||||
class BasicExpressionsTests(TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue