Skip to content

Commit

Permalink
fix: type hint kwargs properly (#2364)
Browse files Browse the repository at this point in the history
* fix

* chore: changelog
  • Loading branch information
Dorukyum committed Feb 26, 2024
1 parent 4f949a8 commit 52d7719
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,8 @@ These changes are available on the `master` branch, but have not yet been releas
([#2345](https://github.com/Pycord-Development/pycord/pull/2345))
- Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on
creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))
- Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type
hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))

## [2.4.1] - 2023-03-20

Expand Down
2 changes: 1 addition & 1 deletion discord/ext/bridge/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def predicate(func: Callable | ApplicationCommand):
return predicate


def has_permissions(**perms: dict[str, bool]):
def has_permissions(**perms: bool):
r"""Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a
:func:`~ext.commands.check` that locks the command to be run by people with certain
permissions inside guilds, and also registers the command as locked behind said permissions.
Expand Down

0 comments on commit 52d7719

Please sign in to comment.