diff options
| author | Rapptz <[email protected]> | 2021-04-27 05:47:26 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-04-27 05:48:27 -0400 |
| commit | 9f3551926ad5176c0cbf23a1a127452a2749a135 (patch) | |
| tree | 0e6cbe78da169ee23bbf646679f10daa2f988057 /discord/ext/commands/flags.py | |
| parent | [commands] Disallow float/complex in Literal but allow None (diff) | |
| download | discord.py-9f3551926ad5176c0cbf23a1a127452a2749a135.tar.xz discord.py-9f3551926ad5176c0cbf23a1a127452a2749a135.zip | |
Split annotation resolution to discord.utils
Diffstat (limited to 'discord/ext/commands/flags.py')
| -rw-r--r-- | discord/ext/commands/flags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/flags.py b/discord/ext/commands/flags.py index e58c9ce5..3aa9a65f 100644 --- a/discord/ext/commands/flags.py +++ b/discord/ext/commands/flags.py @@ -32,7 +32,7 @@ from .errors import ( MissingRequiredFlag, ) -from .core import resolve_annotation +from discord.utils import resolve_annotation from .view import StringView from .converter import run_converters |