data = tablib.Dataset(('John', 'Doe', '10'), headers=['fname', 'lname', 'age'])
print(data, data.json, tablib.import_set(data.json), sep='\n\n##############\n\n')
fname|lname|age
-----|-----|---
John |Doe |10
##############
[{"fname": "John", "lname": "Doe", "age": "10"}]
##############
fname|age|lname
-----|---|-----
John |10 |Doe
This was actually detected before in the failing tests in #149 and it was fixed by fixing the tests. I would expect users to at least be warned about this, if it cannot be fixed with reasonable effort.
This was actually detected before in the failing tests in #149 and it was fixed by fixing the tests. I would expect users to at least be warned about this, if it cannot be fixed with reasonable effort.