@@ -284,7 +284,7 @@ async def snippet_edit(self, ctx, name: str.lower, *, value):
284
284
embed = create_not_found_embed (name , self .bot .snippets .keys (), "Snippet" )
285
285
await ctx .send (embed = embed )
286
286
287
- @commands .command (usage = ' <category> [options]' )
287
+ @commands .command (usage = " <category> [options]" )
288
288
@checks .has_permissions (PermissionLevel .MODERATOR )
289
289
@checks .thread_only ()
290
290
async def move (self , ctx , * , arguments ):
@@ -294,15 +294,15 @@ async def move(self, ctx, *, arguments):
294
294
`category` may be a category ID, mention, or name.
295
295
`options` is a string which takes in arguments on how to perform the move. Ex: "silently"
296
296
"""
297
- split_args = arguments .strip ('"' ).split (' ' )
297
+ split_args = arguments .strip ('"' ).split (" " )
298
298
299
299
# manually parse arguments, consumes as much of args as possible for category
300
300
for i in range (len (split_args )):
301
301
try :
302
302
if i == 0 :
303
303
fmt = arguments
304
304
else :
305
- fmt = ' ' .join (split_args [:- i ])
305
+ fmt = " " .join (split_args [:- i ])
306
306
307
307
category = await commands .CategoryChannelConverter ().convert (ctx , fmt )
308
308
except commands .BadArgument :
@@ -313,7 +313,7 @@ async def move(self, ctx, *, arguments):
313
313
else :
314
314
break
315
315
316
- options = ' ' .join (arguments .split (' ' )[- i :])
316
+ options = " " .join (arguments .split (" " )[- i :])
317
317
318
318
thread = ctx .thread
319
319
silent = False
0 commit comments