mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[1.8.x] Sorted imports with isort; refs #23860.
Backport of 0ed7d15563 from master
			
			
This commit is contained in:
		| @@ -2,21 +2,23 @@ import os | ||||
| import tempfile | ||||
| import uuid | ||||
|  | ||||
| from django.contrib.contenttypes.fields import ( | ||||
|     GenericForeignKey, GenericRelation, | ||||
| ) | ||||
| from django.contrib.contenttypes.models import ContentType | ||||
| from django.core.files.storage import FileSystemStorage | ||||
| from django.db import models | ||||
| from django.db.models.fields.files import ImageField, ImageFieldFile | ||||
| from django.db.models.fields.related import ( | ||||
|     ForeignKey, ForeignObject, ManyToManyField, OneToOneField, | ||||
| ) | ||||
| from django.utils import six | ||||
|  | ||||
| try: | ||||
|     from PIL import Image | ||||
| except ImportError: | ||||
|     Image = None | ||||
|  | ||||
| from django.core.files.storage import FileSystemStorage | ||||
| from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation | ||||
| from django.contrib.contenttypes.models import ContentType | ||||
| from django.db.models.fields.related import ( | ||||
|     ForeignObject, ForeignKey, ManyToManyField, OneToOneField, | ||||
| ) | ||||
| from django.db import models | ||||
| from django.db.models.fields.files import ImageFieldFile, ImageField | ||||
| from django.utils import six | ||||
|  | ||||
|  | ||||
| class Foo(models.Model): | ||||
|     a = models.CharField(max_length=10) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user