mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
wtf? is that even valid?
This commit is contained in:
+1
-1
@@ -86,7 +86,7 @@ class Row(object):
|
||||
elif isinstance(tag, basestring):
|
||||
return (tag in self.tags)
|
||||
else:
|
||||
return True if len(set(tag) & set(self.tags)) else False
|
||||
return True if len(set(tag) and set(self.tags)) else False
|
||||
|
||||
|
||||
class Dataset(object):
|
||||
|
||||
Reference in New Issue
Block a user