Small documentation fix in Dataset class

This commit is contained in:
Daniel Harms
2015-11-10 14:15:37 -05:00
parent a785d77901
commit 65703550c3
+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()