Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -185,7 +185,7 @@ def find_best_ingredients(required_ingredients_names, available_ingredients_deta
|
|
185 |
else:
|
186 |
print("Keine weiteren passenden Zutaten gefunden.")
|
187 |
break
|
188 |
-
|
189 |
print(f"\nEndgültige Zutatenkombination: {current_combination}")
|
190 |
return current_combination
|
191 |
|
|
|
185 |
else:
|
186 |
print("Keine weiteren passenden Zutaten gefunden.")
|
187 |
break
|
188 |
+
random.shuffle(current_combination)
|
189 |
print(f"\nEndgültige Zutatenkombination: {current_combination}")
|
190 |
return current_combination
|
191 |
|