Skip to content

Commit

Permalink
fix collections import
Browse files Browse the repository at this point in the history
  • Loading branch information
higs4281 committed May 9, 2019
1 parent 9641e45 commit f30e32f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions paying_for_college/views.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import json
import os
import re
from collections import OrderedDict

from django.conf import settings
from django.core.mail import send_mail
Expand All @@ -21,11 +22,6 @@
)


try:
from collections import OrderedDict
except Exception: # pragma: no cover
from ordereddict import OrderedDict

BASEDIR = os.path.dirname(__file__)

try:
Expand Down

0 comments on commit f30e32f

Please sign in to comment.