diff options
| author | Rapptz <[email protected]> | 2017-01-13 01:27:16 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-13 01:27:16 -0500 |
| commit | 6d3a5eaeb67489e6469869a282c662026cadbae0 (patch) | |
| tree | 78e7b6d8177c633309c10648c1edb598dc15b93e | |
| parent | Fix 404s in pins_from and create_role routes. (diff) | |
| download | discord.py-6d3a5eaeb67489e6469869a282c662026cadbae0.tar.xz discord.py-6d3a5eaeb67489e6469869a282c662026cadbae0.zip | |
Remove extraneous kwargs from Permissions constructor.
| -rw-r--r-- | discord/permissions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/permissions.py b/discord/permissions.py index 507f77a5..2121243d 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -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): |