soxogvv commited on
Commit
feca5fb
·
verified ·
1 Parent(s): cd83f85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -502,7 +502,7 @@ def get_random_link() -> Tuple[Optional[str], Optional[str]]:
502
  if not raw_left and not reacted_left:
503
  return None, None
504
 
505
- choice_pool = "raw" if random.random() < 0.7 else "reacted"
506
  if choice_pool == "raw" and not raw_left:
507
  choice_pool = "reacted"
508
  if choice_pool == "reacted" and not reacted_left:
 
502
  if not raw_left and not reacted_left:
503
  return None, None
504
 
505
+ choice_pool = "raw" if random.random() < 0.4 else "reacted"
506
  if choice_pool == "raw" and not raw_left:
507
  choice_pool = "reacted"
508
  if choice_pool == "reacted" and not reacted_left: