This post was flagged by the community and is temporarily hidden.
You’re having a python error:
if int(cushing_anthro.anthropometry) you can’t cast a None to int as the error shows.
Make sure that int has a valid input, or do something like : if int(cushing_anthro.anthropometry or 0)
2 Likes