mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
Fix also __slots__ to ensure proper unpickling
This commit is contained in:
+1
-1
@@ -29,7 +29,7 @@ __docformat__ = 'restructuredtext'
|
||||
class Row(object):
|
||||
"""Internal Row object. Mainly used for filtering."""
|
||||
|
||||
__slots__ = ['tuple', '_row', 'tags']
|
||||
__slots__ = ['_row', 'tags']
|
||||
|
||||
def __init__(self, row=list(), tags=list()):
|
||||
self._row = list(row)
|
||||
|
||||
Reference in New Issue
Block a user