Skip to content

Commit 72e9522

Browse files
committed
Formatting
1 parent 8efb4ba commit 72e9522

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cogs/modmail.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ async def snippet_edit(self, ctx, name: str.lower, *, value):
284284
embed = create_not_found_embed(name, self.bot.snippets.keys(), "Snippet")
285285
await ctx.send(embed=embed)
286286

287-
@commands.command(usage='<category> [options]')
287+
@commands.command(usage="<category> [options]")
288288
@checks.has_permissions(PermissionLevel.MODERATOR)
289289
@checks.thread_only()
290290
async def move(self, ctx, *, arguments):
@@ -294,15 +294,15 @@ async def move(self, ctx, *, arguments):
294294
`category` may be a category ID, mention, or name.
295295
`options` is a string which takes in arguments on how to perform the move. Ex: "silently"
296296
"""
297-
split_args = arguments.strip('"').split(' ')
297+
split_args = arguments.strip('"').split(" ")
298298

299299
# manually parse arguments, consumes as much of args as possible for category
300300
for i in range(len(split_args)):
301301
try:
302302
if i == 0:
303303
fmt = arguments
304304
else:
305-
fmt = ' '.join(split_args[:-i])
305+
fmt = " ".join(split_args[:-i])
306306

307307
category = await commands.CategoryChannelConverter().convert(ctx, fmt)
308308
except commands.BadArgument:
@@ -313,7 +313,7 @@ async def move(self, ctx, *, arguments):
313313
else:
314314
break
315315

316-
options = ' '.join(arguments.split(' ')[-i:])
316+
options = " ".join(arguments.split(" ")[-i:])
317317

318318
thread = ctx.thread
319319
silent = False

0 commit comments

Comments
 (0)