Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ These changes are available on the `master` branch, but have not yet been releas
([#2709](https://github.com/Pycord-Development/pycord/pull/2709))
- Fixed `ForumChannel.edit` allowing `default_reaction_emoji` to be `None`
([#2739](https://github.com/Pycord-Development/pycord/pull/2739))
- Fixed incorrect type hints in `Select.__init__`.
([#2746])(https://github.com/Pycord-Development/pycord/pull/2746)

### Changed

Expand Down
4 changes: 2 additions & 2 deletions discord/ui/select.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def __init__(
placeholder: str | None = None,
min_values: int = 1,
max_values: int = 1,
options: list[SelectOption] = None,
channel_types: list[ChannelType] = None,
options: list[SelectOption] | None = None,
channel_types: list[ChannelType] | None = None,
disabled: bool = False,
row: int | None = None,
) -> None:
Expand Down