Skip to content

Commit

Permalink
Harmonized json imports (dropped simplejson)
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Jun 29, 2015
1 parent 5e403bf commit 3b235cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions django_hstore/dict.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
try:
import simplejson as json
except ImportError:
import json
import json

from decimal import Decimal

Expand Down
5 changes: 1 addition & 4 deletions django_hstore/forms.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
from __future__ import unicode_literals, absolute_import

try:
import simplejson as json
except ImportError:
import json
import json

from django.forms import Field
from django.utils import six
Expand Down

0 comments on commit 3b235cb

Please sign in to comment.