freddyaboulton HF Staff commited on
Commit
36319cd
·
1 Parent(s): 1c1c042

Deploy Discord Bot

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ bot = commands.Bot(command_prefix="/", intents=intents)
47
  async def on_ready():
48
  print(f"Logged in as {bot.user} (ID: {bot.user.id})")
49
  synced = await bot.tree.sync()
50
- await ctx.send(f"Synced commands: {', '.join([s.name for s in synced])}.")
51
  event.set()
52
  print("------")
53
 
 
47
  async def on_ready():
48
  print(f"Logged in as {bot.user} (ID: {bot.user.id})")
49
  synced = await bot.tree.sync()
50
+ print(f"Synced commands: {', '.join([s.name for s in synced])}.")
51
  event.set()
52
  print("------")
53