Skip to content

Commit

Permalink
Remove debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Nov 13, 2023
1 parent 7130c44 commit 9355739
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/heckbot/cogs/picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,8 @@ def random_game(players: list[str]):
players = [player for player in players if player in owned_games]
r = ''
options = owned_games[players[0]]
print(f'{owned_games=}')
print(f'{players=}')
for player in players[1:]:
options = options.intersection(owned_games[player])
print(f'{options=}')
options = {
item for item in options
if game_constraints[item][0] <= len(players) <= game_constraints[item][1]
Expand Down

0 comments on commit 9355739

Please sign in to comment.