diff options
| author | 2021-02-06 12:54:45 +0200 | |
|---|---|---|
| committer | 2021-02-06 12:54:45 +0200 | |
| commit | d0c87c7f12ca20ec9be54bf0d299ca23a5e559db (patch) | |
| tree | bf3c31791c9941ac44854bb541d484e5fa477146 | |
| parent | Create local-file tag about sending local files to Discord (diff) | |
discord.Channel -> discord.TextChannel
| -rw-r--r-- | bot/resources/tags/local-file.md | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/local-file.md b/bot/resources/tags/local-file.md index 309ca4820..a587139ee 100644 --- a/bot/resources/tags/local-file.md +++ b/bot/resources/tags/local-file.md @@ -20,5 +20,5 @@ After this, you can send embed and attachment to Discord:  ```py  await channel.send(file=file, embed=embed)  ``` -This example uses `discord.Channel` for sending, but any `discord.Messageable` can be used for sending. +This example uses `discord.TextChannel` for sending, but any `discord.Messageable` can be used for sending.  |