You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hola! Creo que hay un error en el tester, en el archivo part_2.py, en la línea 94 dice:
if team.id == match.teamA or team.id == match.teamB
y debería ser:
if team.id == match.teamA['id'] or team.id == match.teamB['id']
Esto es debido a que match.teamA y match.teamB son diccionarios y match.id es un int por lo que obviamente nunca serán iguales, así que debemos extraer el id de cada diccionario para almacenarlos en la lista filtered_matches.
Podrían confirmarme si es un error o estoy mal yo?
Gracias!
The text was updated successfully, but these errors were encountered:
Hola! Creo que hay un error en el tester, en el archivo part_2.py, en la línea 94 dice:
if team.id == match.teamA or team.id == match.teamB
y debería ser:
if team.id == match.teamA['id'] or team.id == match.teamB['id']
Esto es debido a que match.teamA y match.teamB son diccionarios y match.id es un int por lo que obviamente nunca serán iguales, así que debemos extraer el id de cada diccionario para almacenarlos en la lista filtered_matches.
Podrían confirmarme si es un error o estoy mal yo?
Gracias!
The text was updated successfully, but these errors were encountered: