Browse Source
[commands] Add overload to run_converters
pull/7898/head
Josh
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
0 deletions
-
discord/ext/commands/converter.py
|
|
@ -35,6 +35,7 @@ from typing import ( |
|
|
|
List, |
|
|
|
Literal, |
|
|
|
Optional, |
|
|
|
overload, |
|
|
|
Protocol, |
|
|
|
Tuple, |
|
|
|
Type, |
|
|
@ -1242,6 +1243,18 @@ async def _actual_conversion(ctx: Context[BotT], converter, argument: str, param |
|
|
|
raise BadArgument(f'Converting to "{name}" failed for parameter "{param.name}".') from exc |
|
|
|
|
|
|
|
|
|
|
|
@overload |
|
|
|
async def run_converters( |
|
|
|
ctx: Context[BotT], converter: Union[Type[Converter[T]], Converter[T]], argument: str, param: Parameter |
|
|
|
) -> T: |
|
|
|
... |
|
|
|
|
|
|
|
|
|
|
|
@overload |
|
|
|
async def run_converters(ctx: Context[BotT], converter: Any, argument: str, param: Parameter) -> Any: |
|
|
|
... |
|
|
|
|
|
|
|
|
|
|
|
async def run_converters(ctx: Context[BotT], converter: Any, argument: str, param: Parameter) -> Any: |
|
|
|
"""|coro| |
|
|
|
|
|
|
|