Skip to content

Commit 0381a6e

Browse files
style(pre-commit): auto fixes from pre-commit.com hooks
1 parent c01e384 commit 0381a6e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

discord/emoji.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ def __str__(self) -> str:
9191
return f"<:{self.name}:{self.id}>"
9292

9393
def __repr__(self) -> str:
94-
return (
95-
f"<BaseEmoji id={self.id} name={self.name!r} animated={self.animated}>"
96-
)
94+
return f"<BaseEmoji id={self.id} name={self.name!r} animated={self.animated}>"
9795

9896
def __eq__(self, other: Any) -> bool:
9997
return isinstance(other, _EmojiTag) and self.id == other.id

0 commit comments

Comments
 (0)