aboutsummaryrefslogtreecommitdiff
path: root/discord/game.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-10-11 00:57:41 -0400
committerRapptz <[email protected]>2017-01-03 09:51:50 -0500
commite4b16851bf70e98c9f7dc15bb0ac2690073f8f09 (patch)
tree68f713a51f7094edd851b7428c8a6f4b3ad01e48 /discord/game.py
parentAdd some basic ABCs. (diff)
downloaddiscord.py-e4b16851bf70e98c9f7dc15bb0ac2690073f8f09.tar.xz
discord.py-e4b16851bf70e98c9f7dc15bb0ac2690073f8f09.zip
Slots use tuples instead now.
Diffstat (limited to 'discord/game.py')
-rw-r--r--discord/game.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/game.py b/discord/game.py
index 49e5a4fb..2ccabe28 100644
--- a/discord/game.py
+++ b/discord/game.py
@@ -51,7 +51,7 @@ class Game:
The type of game being played. 1 indicates "Streaming".
"""
- __slots__ = ['name', 'type', 'url']
+ __slots__ = ('name', 'type', 'url')
def __init__(self, **kwargs):
self.name = kwargs.get('name')