Fix type for content param in HTTPClient.send_message

This commit is contained in:
Stocker 2021-08-23 05:24:43 -04:00 committed by GitHub
parent cdf46127ae
commit 400936df69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,