Update menu.py
Browse files
menu.py
CHANGED
|
@@ -182,7 +182,7 @@ def menu():
|
|
| 182 |
reward_points=reward_points,
|
| 183 |
user_name=user_name, # Pass name to the template
|
| 184 |
first_letter=first_letter, # Pass first letter to the template
|
| 185 |
-
most_common_addons=most_common_addons, # Pass most common addons
|
| 186 |
most_common_instructions=most_common_instructions # Pass most common instructions
|
| 187 |
)
|
| 188 |
|
|
|
|
| 182 |
reward_points=reward_points,
|
| 183 |
user_name=user_name, # Pass name to the template
|
| 184 |
first_letter=first_letter, # Pass first letter to the template
|
| 185 |
+
most_common_addons=[addon.strip() for addon in most_common_addons], # Pass most common addons
|
| 186 |
most_common_instructions=most_common_instructions # Pass most common instructions
|
| 187 |
)
|
| 188 |
|