Removed some unnecessary prints

main
Anorak_1 2023-08-10 22:30:24 +02:00
parent 75ff784301
commit 3fedb29509
1 changed files with 0 additions and 4 deletions

4
bot.py
View File

@ -42,12 +42,8 @@ async def on_ready():
print(f"Logged in as {bot.user}")
for i in bot.guilds:
if str(i.id) not in GuildAppDB.get_all_guilds():
print(f"{i.id} is not in guilds")
GuildAppDB.create_guild(str(i.id), i.name)
print(f"entry for {i.id} created")
else:
print(f"{i.id} is in guilds")
print(GuildAppDB.get_all_guilds())
@bot.event
async def on_guild_join(guild):