mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
Rely on built-in JSON.
This commit is contained in:
@@ -3,7 +3,11 @@
|
||||
""" Tablib - JSON Support
|
||||
"""
|
||||
|
||||
import simplejson as json
|
||||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
import simplejson as json
|
||||
|
||||
import tablib.core
|
||||
|
||||
title = 'json'
|
||||
|
||||
Reference in New Issue
Block a user