回答編集履歴
1
インデント修正
test
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
if message.content == '〇〇':
|
6
6
|
|
7
|
-
|
7
|
+
file = discord.File("ファイルのパス.png", filename="discord上のファイル名.png")
|
8
8
|
|
9
|
-
|
9
|
+
await message.channel.send(file=file)
|
10
10
|
|
11
11
|
```
|
12
12
|
|