Optimise Python imports.

This commit is contained in:
Dave Page
2016-06-21 14:12:14 +01:00
parent 4f5eeffd1f
commit 3026b470e9
92 changed files with 500 additions and 412 deletions

View File

@@ -9,12 +9,13 @@
"""Utility functions for dealing with AJAX."""
from flask import Response
from flask.ext.babel import gettext as _
import simplejson as json
import datetime
import decimal
import simplejson as json
from flask import Response
from flask.ext.babel import gettext as _
class DataTypeJSONEncoder(json.JSONEncoder):
def default(self, obj):