aboutsummaryrefslogtreecommitdiff
path: root/discord/channel.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/channel.py')
-rw-r--r--discord/channel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/channel.py b/discord/channel.py
index cb6425ec..4e7da47b 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -75,13 +75,13 @@ class Channel(Hashable):
"""
def __init__(self, **kwargs):
- self.update(**kwargs)
+ self._update(**kwargs)
self.voice_members = []
def __str__(self):
return self.name
- def update(self, **kwargs):
+ def _update(self, **kwargs):
self.name = kwargs.get('name')
self.server = kwargs.get('server')
self.id = kwargs.get('id')