Skip to content

Commit

Permalink
Remove printing on users router
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladislav0Art committed Oct 31, 2023
1 parent 7a72df1 commit e95e2d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/src/routers/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ def get_top_users_with_max_infobox_count_by_layout(layout: str, limit: int, conn

data = []
for (user_id, infobox_layout, infobox_count) in rows:
print(user_id, infobox_layout, infobox_count)
data.append(UserInfoboxCountResponse(
user_id=user_id,
infobox_layout=(layout if (infobox_layout is None) else infobox_layout),
Expand Down

0 comments on commit e95e2d8

Please sign in to comment.