diff --git a/worldtimezone/extensions/edit_world_clock.py b/worldtimezone/extensions/edit_world_clock.py index 8d78262..d56a563 100644 --- a/worldtimezone/extensions/edit_world_clock.py +++ b/worldtimezone/extensions/edit_world_clock.py @@ -13,7 +13,6 @@ async def edit_world_clock(bot: lightbulb.BotApp) -> None: await bot.wait_for(hikari.StartedEvent, timeout=None) def create_embed(guild_id, member_id, tz): - print("guild_id", guild_id, "member_id", member_id) user_ = bot.cache.get_member(guild_id, int(member_id)) if user_ is None: return None diff --git a/worldtimezone/extensions/world_clock_data.py b/worldtimezone/extensions/world_clock_data.py index 6a84964..acb0b29 100644 --- a/worldtimezone/extensions/world_clock_data.py +++ b/worldtimezone/extensions/world_clock_data.py @@ -97,9 +97,6 @@ def get_guild(self, guild_id) -> Optional[DBGuild]: def get_guilds_list(self) -> list[DBGuild]: guilds = DBGuild.select() - print(guilds) - for g in guilds: - print("abc::", g.discord_id) return list(guilds) def set_guild_world_clock(self, guild: DBGuild, channel_id, message_id) -> bool: