We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c01e384 commit 0381a6eCopy full SHA for 0381a6e
discord/emoji.py
@@ -91,9 +91,7 @@ def __str__(self) -> str:
91
return f"<:{self.name}:{self.id}>"
92
93
def __repr__(self) -> str:
94
- return (
95
- f"<BaseEmoji id={self.id} name={self.name!r} animated={self.animated}>"
96
- )
+ return f"<BaseEmoji id={self.id} name={self.name!r} animated={self.animated}>"
97
98
def __eq__(self, other: Any) -> bool:
99
return isinstance(other, _EmojiTag) and self.id == other.id
0 commit comments