Browse Source

Convert two missing places to f-strings

pull/6620/head
Rapptz 4 years ago
parent
commit
94bd1b9822
  1. 2
      discord/abc.py
  2. 2
      discord/invite.py

2
discord/abc.py

@ -359,7 +359,7 @@ class GuildChannel:
@property
def mention(self):
""":class:`str`: The string that allows you to mention the channel."""
return '<#%s>' % self.id
return f'<#{self.id}>'
@property
def created_at(self):

2
discord/invite.py

@ -78,7 +78,7 @@ class PartialInviteChannel:
@property
def mention(self):
""":class:`str`: The string that allows you to mention the channel."""
return '<#%s>' % self.id
return f'<#{self.id}>'
@property
def created_at(self):

Loading…
Cancel
Save