Skip to content

Commit 5a961d4

Browse files
committed
Add missing indent blocks
1 parent 9854032 commit 5a961d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

main.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ async def reactions(ctx, setting:str):
272272

273273
@client.command(aliases=['setnum'])
274274
async def setnumber(ctx, arg1:int):
275-
if arg1 < 1: raise(discord.ext.commands.BadArgument)
276-
else:
277-
count[str(ctx.channel.id)] = arg1
278-
savedata()
279-
await ctx.reply(f':white_check_mark: Count set to `{count[str(ctx.channel.id)]}`')
275+
if arg1 < 1: raise(discord.ext.commands.BadArgument)
276+
else:
277+
count[str(ctx.channel.id)] = arg1
278+
savedata()
279+
await ctx.reply(f':white_check_mark: Count set to `{count[str(ctx.channel.id)]}`')
280280

281281
@client.command(aliases=['resetnumber', 'reset', 'resetnum'])
282282
async def resetcount(ctx):

0 commit comments

Comments
 (0)