chore(SRC): :rocket: Uncomment find user matches
Browse files
app.py
CHANGED
@@ -61,11 +61,11 @@ def calcular_macros(esfuerzo_dieta, objetivo, cumplimiento_entrenamiento,
|
|
61 |
# Print query
|
62 |
print(f"Query: {query}")
|
63 |
|
64 |
-
#
|
65 |
-
|
66 |
|
67 |
-
#
|
68 |
-
|
69 |
|
70 |
# # Find macros that match dates of users
|
71 |
# macros_differences_list = find_macros_that_match_dates_of_users(matches_dict)
|
|
|
61 |
# Print query
|
62 |
print(f"Query: {query}")
|
63 |
|
64 |
+
# Crear diccionario de matches
|
65 |
+
matches_dict = find_user_dates_matches(query)
|
66 |
|
67 |
+
# Print matches
|
68 |
+
print(f"Matches:\n{matches_dict}")
|
69 |
|
70 |
# # Find macros that match dates of users
|
71 |
# macros_differences_list = find_macros_that_match_dates_of_users(matches_dict)
|