We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3345fb commit a8fcb34Copy full SHA for a8fcb34
discord/commands/context.py
@@ -185,7 +185,7 @@ def unselected_options(self) -> Optional[List[Dict]]:
185
if self.command.options is not None: # type: ignore
186
selected = [opt["name"] for opt in self.selected_options]
187
return [
188
- option.to_dict()
+ option
189
for option in self.command.options # type: ignore
190
if option.to_dict()["name"] not in selected
191
]
0 commit comments