diff options
| author | Rapptz <[email protected]> | 2021-06-02 06:00:39 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-06-02 06:00:39 -0400 |
| commit | 4b1059579e791f4aed397f03516e909613822486 (patch) | |
| tree | 4b753f6becaf4e91d53ccd3c551c440d561fb8ed /discord | |
| parent | Allow passing Emoji in components (diff) | |
| download | discord.py-4b1059579e791f4aed397f03516e909613822486.tar.xz discord.py-4b1059579e791f4aed397f03516e909613822486.zip | |
Fix NameError in missing _EmojiTag import
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/components.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/components.py b/discord/components.py index 125beb79..77d6ddd4 100644 --- a/discord/components.py +++ b/discord/components.py @@ -27,7 +27,7 @@ from __future__ import annotations from typing import Any, ClassVar, Dict, List, Optional, TYPE_CHECKING, Tuple, Type, TypeVar, Union from .enums import try_enum, ComponentType, ButtonStyle from .utils import get_slots, MISSING -from .partial_emoji import PartialEmoji +from .partial_emoji import PartialEmoji, _EmojiTag if TYPE_CHECKING: from .types.components import ( |