質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,6 +14,6 @@
|
|
14
14
|
|
15
15
|
embed.add_field(name="クリア", value="clear", inline=False)
|
16
16
|
|
17
|
-
await ctx.send(embed=embed
|
17
|
+
await ctx.send(embed=embed)
|
18
18
|
|
19
19
|
```
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
```Python
|
6
|
+
|
5
|
-
|
7
|
+
@client.command()
|
6
8
|
|
7
9
|
async def clear(ctx,amount:int):
|
8
10
|
|
@@ -12,4 +14,6 @@
|
|
12
14
|
|
13
15
|
embed.add_field(name="クリア", value="clear", inline=False)
|
14
16
|
|
15
|
-
await ctx.send(embed=embed
|
17
|
+
await ctx.send(embed=embed
|
18
|
+
|
19
|
+
```
|