mirror of
https://github.com/django/django.git
synced 2025-10-21 07:42:25 +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
|
@ -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