Browse Source

Actually drop copy.copy in Member

Remove the old and slow Member._copy implementation that was left over
by accident in 095f0ec.  Since it was defined later it overrode the new
implementation and rendered it moot.
pull/1739/head
Hornwitser 7 years ago
committed by Rapptz
parent
commit
7fe4c999fb
  1. 6
      discord/member.py

6
discord/member.py

@ -25,7 +25,6 @@ DEALINGS IN THE SOFTWARE.
""" """
import itertools import itertools
import copy
import discord.abc import discord.abc
@ -225,11 +224,6 @@ class Member(discord.abc.Messageable, _BaseUser):
u.avatar = user.get('avatar', u.avatar) u.avatar = user.get('avatar', u.avatar)
u.discriminator = user.get('discriminator', u.discriminator) u.discriminator = user.get('discriminator', u.discriminator)
def _copy(self):
c = copy.copy(self)
c._user = copy.copy(self._user)
return c
@property @property
def colour(self): def colour(self):
"""A property that returns a :class:`Colour` denoting the rendered colour """A property that returns a :class:`Colour` denoting the rendered colour

Loading…
Cancel
Save