Update app.py
Browse files
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.
|
| 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:
|