From e4b16851bf70e98c9f7dc15bb0ac2690073f8f09 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 11 Oct 2016 00:57:41 -0400 Subject: Slots use tuples instead now. --- discord/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/game.py') 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') -- cgit v1.2.3