mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Optimise Python imports.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user