mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-07 10:22:59 +00:00
Consume remaining keyword arguments in Game constructor.
This commit is contained in:
@ -57,7 +57,7 @@ class Game:
|
||||
|
||||
__slots__ = ('name', 'type', 'url')
|
||||
|
||||
def __init__(self, *, name, url=None, type=0):
|
||||
def __init__(self, *, name, url=None, type=0, **kwargs):
|
||||
self.name = name
|
||||
self.url = url
|
||||
self.type = type
|
||||
|
Reference in New Issue
Block a user