Skip to content

Commit

Permalink
🐛 [Bugfix] Message does not have type
Browse files Browse the repository at this point in the history
  • Loading branch information
foxwhite25 committed Apr 7, 2022
1 parent 0555902 commit f3d6c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qq/message.py
Expand Up @@ -617,7 +617,7 @@ def __init__(
def __repr__(self) -> str:
name = self.__class__.__name__
return (
f'<{name} id={self.id} channel={self.channel!r} type={self.type!r} author={self.author!r}>'
f'<{name} id={self.id} channel={self.channel!r} author={self.author!r}>'
)

def _try_patch(self, data, key, transform=None) -> None:
Expand Down

0 comments on commit f3d6c39

Please sign in to comment.