lunarflu HF Staff commited on
Commit
a661bc3
Β·
1 Parent(s): 6245db1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -55,7 +55,7 @@ async def discord_before(ctx):
55
  if ctx.message.attachments:
56
  await asyncio.gather(
57
  ctx.message.add_reaction('πŸ€–'),
58
- await asyncio.sleep(0.5),
59
  ctx.message.add_reaction('βŒ›')
60
  )
61
  attachment = ctx.message.attachments[0]
@@ -69,7 +69,7 @@ async def discord_before(ctx):
69
  else:
70
  await asyncio.gather(
71
  ctx.send(f"{ctx.author.mention} No attachments to be found... Can't animify dat! Try sending me an image πŸ˜‰"),
72
- await asyncio.sleep(0.5),
73
  ctx.message.add_reaction('❌')
74
  )
75
  return None
@@ -88,11 +88,11 @@ async def generation(ctx, attachment):
88
 
89
  await asyncio.gather(
90
  ctx.send(f'{ctx.author.mention} Here is the jojo version of it'),
91
- await asyncio.sleep(0.5),
92
  ctx.send(file=discord.File(im)),
93
- await asyncio.sleep(0.5),
94
  ctx.message.remove_reaction('βŒ›', bot.user),
95
- await asyncio.sleep(0.5),
96
  ctx.message.add_reaction('βœ…')
97
  )
98
 
 
55
  if ctx.message.attachments:
56
  await asyncio.gather(
57
  ctx.message.add_reaction('πŸ€–'),
58
+ asyncio.sleep(0.5),
59
  ctx.message.add_reaction('βŒ›')
60
  )
61
  attachment = ctx.message.attachments[0]
 
69
  else:
70
  await asyncio.gather(
71
  ctx.send(f"{ctx.author.mention} No attachments to be found... Can't animify dat! Try sending me an image πŸ˜‰"),
72
+ asyncio.sleep(0.5),
73
  ctx.message.add_reaction('❌')
74
  )
75
  return None
 
88
 
89
  await asyncio.gather(
90
  ctx.send(f'{ctx.author.mention} Here is the jojo version of it'),
91
+ asyncio.sleep(0.5),
92
  ctx.send(file=discord.File(im)),
93
+ asyncio.sleep(0.5),
94
  ctx.message.remove_reaction('βŒ›', bot.user),
95
+ asyncio.sleep(0.5),
96
  ctx.message.add_reaction('βœ…')
97
  )
98