mirror of https://gitlab.com/litecord/litecord.git
lint pass
This commit is contained in:
parent
de63efff82
commit
992b2cbf1f
|
|
@ -111,10 +111,10 @@ async def set_max_concurrency(ctx, args):
|
||||||
int(args.user_id),
|
int(args.user_id),
|
||||||
)
|
)
|
||||||
|
|
||||||
if bot == None:
|
if bot is None:
|
||||||
return print("user not found")
|
return print("user not found")
|
||||||
|
|
||||||
if bot == False:
|
if not bot:
|
||||||
return print("user must be a bot")
|
return print("user must be a bot")
|
||||||
|
|
||||||
await ctx.db.execute(
|
await ctx.db.execute(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue