Skip to content

Commit

Permalink
dashboard/dashboard: remove all debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
0vf committed Jul 2, 2024
1 parent 762d6aa commit 7ae29c0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions dashboard/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ def dashboard():

for guild in guilds:
if guild.permissions.administrator:
print(guild.id)
guild.status = True if guild.id in bot_guilds else False
guilds_array.append(guild)

Expand Down Expand Up @@ -127,7 +126,6 @@ def server_view(guild_id):
if request.method == 'POST':
log_channel = request.form["log_channel"]
event_log_channel = request.form["event_log_channel"]
print(guild_channels.response)
if log_channel == 0 or log_channel in guild_channels.response:
db.set_log_channel(guild_id, log_channel, conn, c)
if event_log_channel == 0 or event_log_channel in guild_channels.response:
Expand Down

0 comments on commit 7ae29c0

Please sign in to comment.