mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-25 06:27:03 +01:00
Put all guilds in a list before going thru it
This commit is contained in:
parent
316e95a103
commit
f47d439e33
@ -91,8 +91,11 @@ class Titan(discord.AutoShardedClient):
|
||||
async def start_cleanup(self):
|
||||
with self.database.get_session() as session:
|
||||
guilds = session.query(Guilds).all()
|
||||
guilds_new = []
|
||||
count = 0
|
||||
for guild in guilds:
|
||||
guilds_new.append(guild)
|
||||
for guild in guilds_new:
|
||||
count += 1
|
||||
self.logger.info("[{}] snowflake-{} name-{}".format(count, guild.guild_id, guild.name))
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user