Browse Source

Fix type for content param in HTTPClient.send_message

pull/7462/head
Stocker 4 years ago
committed by GitHub
parent
commit
400936df69
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/http.py

2
discord/http.py

@ -412,7 +412,7 @@ class HTTPClient:
def send_message(
self,
channel_id: Snowflake,
content: str,
content: Optional[str],
*,
tts: bool = False,
embed: Optional[embed.Embed] = None,

Loading…
Cancel
Save