Skip to content

Commit cad1711

Browse files
committed
fix: add missing type hint
1 parent 2c0e2bd commit cad1711

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tableauserverclient/models/reference_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __str__(self):
88

99
__repr__ = __str__
1010

11-
def __eq__(self, other: object):
11+
def __eq__(self, other: object) -> bool:
1212
if not hasattr(other, "id") or not hasattr(other, "tag_name"):
1313
return False
1414
return (self.id == other.id) and (self.tag_name == other.tag_name)

0 commit comments

Comments
 (0)