Browse Source

Fix NameError when checking for File instances

pull/7492/head
Rapptz 3 years ago
parent
commit
50ef8e8893
  1. 2
      discord/webhook/async_.py

2
discord/webhook/async_.py

@ -46,6 +46,7 @@ from ..asset import Asset
from ..http import Route, handle_message_parameters, MultipartParameters
from ..mixins import Hashable
from ..channel import PartialMessageable
from ..file import File
__all__ = (
'Webhook',
@ -57,7 +58,6 @@ __all__ = (
_log = logging.getLogger(__name__)
if TYPE_CHECKING:
from ..file import File
from ..embeds import Embed
from ..mentions import AllowedMentions
from ..message import Attachment

Loading…
Cancel
Save