mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-10-19 04:24:41 +00:00
Remove extraneous kwargs from Permissions constructor.
This commit is contained in:
@@ -68,7 +68,7 @@ class Permissions:
|
||||
"""
|
||||
|
||||
__slots__ = ('value',)
|
||||
def __init__(self, permissions=0, **kwargs):
|
||||
def __init__(self, permissions=0):
|
||||
self.value = permissions
|
||||
|
||||
def __eq__(self, other):
|
||||
|
Reference in New Issue
Block a user