Merge pull request #209 from jdharms/develop

Small documentation fix in Dataset class
This commit is contained in:
2016-01-27 17:17:38 -05:00
+1 -1
View File
@@ -349,7 +349,7 @@ class Dataset(object):
A dataset object can also be imported by setting the `Dataset.dict` attribute: ::
data = tablib.Dataset()
data.json = '[{"last_name": "Adams","age": 90,"first_name": "John"}]'
data.dict = [{'age': 90, 'first_name': 'Kenneth', 'last_name': 'Reitz'}]
"""
return self._package()