diff options
| author | Rapptz <[email protected]> | 2021-04-04 04:40:19 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-04-04 07:03:53 -0400 |
| commit | 9d39b135f4f84239787b0901d06a4f370a82d4bb (patch) | |
| tree | 8826845cfd47eafa5c9d2ef1fcbedd36382714f4 /discord/role.py | |
| parent | Bump minimum Python version to 3.8 (diff) | |
| download | discord.py-9d39b135f4f84239787b0901d06a4f370a82d4bb.tar.xz discord.py-9d39b135f4f84239787b0901d06a4f370a82d4bb.zip | |
Modernize code to use f-strings
This also removes the encoding on the top, since Python 3 does it by
default. It also changes some methods to use `yield from`.
Diffstat (limited to 'discord/role.py')
| -rw-r--r-- | discord/role.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/discord/role.py b/discord/role.py index 735ad12b..46f1ba39 100644 --- a/discord/role.py +++ b/discord/role.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - """ The MIT License (MIT) @@ -248,7 +246,7 @@ class Role(Hashable): @property def mention(self): """:class:`str`: Returns a string that allows you to mention a role.""" - return '<@&%s>' % self.id + return f'<@&{self.id}>' @property def members(self): |