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 cb0ed98 commit e1c76e2Copy full SHA for e1c76e2
interactions/ext/hybrid_commands/hybrid_slash.py
@@ -134,7 +134,7 @@ def __init__(
134
135
async def convert(self, ctx: BaseContext, argument: str) -> float | int:
136
try:
137
- converted: float | int = await maybe_coroutine(self.number_convert, ctx, argument)
+ converted: float | int = await maybe_coroutine(self.number_convert, argument)
138
139
if self.min_value and converted < self.min_value:
140
raise BadArgument(f'Value "{argument}" is less than {self.min_value}.')
0 commit comments