mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
Format import cleanups.
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@
|
||||
""" Tablib - Core Library.
|
||||
"""
|
||||
|
||||
from tablib.formats import formats
|
||||
from tablib.formats import FORMATS as formats
|
||||
|
||||
|
||||
__title__ = 'tablib'
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
""" Tablib - formats
|
||||
"""
|
||||
|
||||
import _csv as csv
|
||||
import _json as json
|
||||
import _xls as xls
|
||||
import _yaml as yaml
|
||||
import tablib.formats._csv as csv
|
||||
import tablib.formats._json as json
|
||||
import tablib.formats._xls as xls
|
||||
import tablib.formats._yaml as yaml
|
||||
|
||||
formats = (csv, json, xls, yaml)
|
||||
FORMATS = (csv, json, xls, yaml)
|
||||
|
||||
Reference in New Issue
Block a user