Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
Saverio976 committed Sep 19, 2024
1 parent 19b1fb5 commit c968187
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion worldtimezone/extensions/edit_world_clock.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions worldtimezone/extensions/world_clock_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c968187

Please sign in to comment.