Skip to content

Commit d76bdec

Browse files
committed
Removed unneeded imports from the Solr backend.
1 parent 4f5f3fc commit d76bdec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

haystack/backends/solr_backend.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
from django.conf import settings
44
from django.core.exceptions import ImproperlyConfigured
55
from django.db.models.loading import get_model
6-
from django.utils.encoding import force_unicode
76
from haystack.backends import BaseSearchBackend, BaseSearchQuery, log_query
87
from haystack.exceptions import MissingDependency, MoreLikeThisError
9-
from haystack.fields import DateField, DateTimeField, IntegerField, FloatField, BooleanField, MultiValueField
108
from haystack.models import SearchResult
11-
from haystack.utils import get_identifier, get_facet_field_name
9+
from haystack.utils import get_identifier
1210
try:
1311
set
1412
except NameError:

0 commit comments

Comments
 (0)