mirror of
https://github.com/django/django.git
synced 2025-08-08 04:48:27 +00:00
[1.8.x] Sorted imports with isort; refs #23860.
Backport of 0ed7d15563
from master
This commit is contained in:
parent
eb406aa686
commit
a8b70d251d
819 changed files with 2631 additions and 2401 deletions
|
@ -2,16 +2,18 @@ import datetime
|
|||
import json
|
||||
import unittest
|
||||
|
||||
from psycopg2.extras import DateRange, DateTimeTZRange, NumericRange
|
||||
|
||||
from django import forms
|
||||
from django.contrib.postgres import forms as pg_forms, fields as pg_fields
|
||||
from django.contrib.postgres.validators import RangeMaxValueValidator, RangeMinValueValidator
|
||||
from django.contrib.postgres import fields as pg_fields, forms as pg_forms
|
||||
from django.contrib.postgres.validators import (
|
||||
RangeMaxValueValidator, RangeMinValueValidator,
|
||||
)
|
||||
from django.core import exceptions, serializers
|
||||
from django.db import connection
|
||||
from django.test import TestCase
|
||||
from django.utils import timezone
|
||||
|
||||
from psycopg2.extras import NumericRange, DateTimeTZRange, DateRange
|
||||
|
||||
from .models import RangesModel
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue