Browse Source
Fix type for content param in HTTPClient.send_message
pull/7462/head
Stocker
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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, |
|
|
|