Change some format usage to use %-formatting.

Minor speed increase when we're not doing excessive attribute
access or any type of formatting.
This commit is contained in:
Rapptz
2017-05-04 06:03:02 -04:00
parent 86bfcdd129
commit d24c2a09b6
5 changed files with 9 additions and 9 deletions

View File

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