Remove extraneous kwargs from Permissions constructor.
This commit is contained in:
@ -68,7 +68,7 @@ class Permissions:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__slots__ = ('value',)
|
__slots__ = ('value',)
|
||||||
def __init__(self, permissions=0, **kwargs):
|
def __init__(self, permissions=0):
|
||||||
self.value = permissions
|
self.value = permissions
|
||||||
|
|
||||||
def __eq__(self, other):
|
def __eq__(self, other):
|
||||||
|
Reference in New Issue
Block a user