We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b125a commit 2c0e2bdCopy full SHA for 2c0e2bd
1 file changed
tableauserverclient/models/reference_item.py
@@ -9,7 +9,7 @@ def __str__(self):
9
__repr__ = __str__
10
11
def __eq__(self, other: object):
12
- if not hasattr(other, 'id') or not hasattr(other, 'tag_name'):
+ if not hasattr(other, "id") or not hasattr(other, "tag_name"):
13
return False
14
return (self.id == other.id) and (self.tag_name == other.tag_name)
15
0 commit comments