oops, bad syntax

This commit is contained in:
augustin64 2024-05-15 10:03:01 +02:00
parent 10d75f9d78
commit 1db1de9606
2 changed files with 2 additions and 2 deletions

2
V6.py
View File

@ -418,7 +418,7 @@ def explore_on_bing(activity: str, config: Config):
"bitcoin",
"anciens francs"
]
chosen = random.choices(currencies, 2)
chosen = random.sample(currencies, k=2)
search_bing(f"convertir {random.randint(2, 120)} {chosen[0]} en {chosen[1]}")
else:
log_error(f"Explore on bing: {activity} not found.")

View File

@ -1 +1 @@
v6.8.54
v6.8.55