Skip to content

Commit

Permalink
fix: typo in samplinhg
Browse files Browse the repository at this point in the history
Co-authored-by: Anna Sambrook <[email protected]>
  • Loading branch information
keshav1998 and annasambrook authored Nov 22, 2024
1 parent 54d1963 commit 97d436b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def _sampled_bet_idx(self, bets: List[Bet]) -> int:
:return: the index of the sampled bet, out of all the available bets, not only the given ones.
"""

# Filter out all the best with the smallest queue number
# Filter out all the bets with the smallest queue number
least_queue_number = min([bet.queue_no for bet in bets])
priority_bets = [bet for bet in bets if bet.queue_no == least_queue_number]

Expand Down

0 comments on commit 97d436b

Please sign in to comment.