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

@ -148,7 +148,7 @@ class Role(Hashable):
@property
def mention(self):
"""Returns a string that allows you to mention a role."""
return '<@&{}>'.format(self.id)
return '<@&%s>' % self.id
@property
def members(self):