diff options
| author | Rapptz <[email protected]> | 2021-08-11 06:25:22 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-08-11 06:25:22 -0400 |
| commit | fda543c8441bd26472b4cd2db2548f29b3d6d74e (patch) | |
| tree | 7653495e54f37befddf5e5ec21f4f521c2cd4367 | |
| parent | Revert "Refactor Client.run to use asyncio.run" (diff) | |
| download | discord.py-fda543c8441bd26472b4cd2db2548f29b3d6d74e.tar.xz discord.py-fda543c8441bd26472b4cd2db2548f29b3d6d74e.zip | |
Fix incorrect indent
| -rw-r--r-- | discord/channel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py index a2282731..6efd19d1 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -1722,7 +1722,7 @@ class DMChannel(discord.abc.Messageable, Hashable): return 'Direct Message with Unknown User' def __repr__(self) -> str: - return f'<DMChannel id={self.id} recipient={self.recipient!r}>' + return f'<DMChannel id={self.id} recipient={self.recipient!r}>' @classmethod def _from_message(cls: Type[DMC], state: ConnectionState, channel_id: int) -> DMC: |