Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
eatyourpeas committed Dec 28, 2024
1 parent 545bc73 commit 43c83bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def mid_parental_height_endpoint(mid_parental_height_request: MidParentalHeightR
try:
maternal_height_sds = sds_for_measurement(age=20, measurement_method=constants.HEIGHT, observation_value=mid_parental_height_request.height_maternal, sex=mid_parental_height_request.sex, reference=mid_parental_height_request.reference)
paternal_height_sds = sds_for_measurement(age=20, measurement_method=constants.HEIGHT, observation_value=mid_parental_height_request.height_paternal, sex=mid_parental_height_request.sex, reference=mid_parental_height_request.reference)
print(f"Maternal height SDS: {maternal_height_sds}, Paternal height SDS: {paternal_height_sds}")

except Exception as e:
raise Exception(f"Error: {e}")

Expand Down

0 comments on commit 43c83bc

Please sign in to comment.