diff options
| author | Benjamin Mintz <[email protected]> | 2019-05-13 20:06:57 +0000 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-05-13 20:29:08 -0400 |
| commit | a62641bd65a651f5c9fb79ad23b67b2f96262cfe (patch) | |
| tree | d2bab94fbc5f780bf02f6ff5458dcdb18107b210 /discord/invite.py | |
| parent | [tasks] Return coro from before and after decorators (diff) | |
| download | discord.py-a62641bd65a651f5c9fb79ad23b67b2f96262cfe.tar.xz discord.py-a62641bd65a651f5c9fb79ad23b67b2f96262cfe.zip | |
Add back __repr__ that were deleted in the Asset redesign
The Asset PR (be227ebcf0c8bad6b56798339b5414b8da414dc0) changed some namedtuple-deriving
classes to object-deriving classes, which meant that the free __repr__ provided by namedtuple
was removed
Diffstat (limited to 'discord/invite.py')
| -rw-r--r-- | discord/invite.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/discord/invite.py b/discord/invite.py index e79eb895..d378c3d7 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -140,6 +140,10 @@ class PartialInviteGuild: def __str__(self): return self.name + def __repr__(self): + return '<{0.__class__.__name__} id={0.id} name={0.name!r} features={0.features} ' \ + 'description={0.description!r}>'.format(self) + @property def created_at(self): """Returns the guild's creation time in UTC.""" |