remove debug

This commit is contained in:
ipu 2025-08-07 01:20:51 +03:00
parent 4a59ba5f4a
commit 126dcf78c7
2 changed files with 1 additions and 2 deletions

View file

@ -46,7 +46,6 @@ async def estimate(request: models.EstimationRequest):
raise e
except Exception as e:
print("Exception in estimate: ", e)
raise e
raise HTTPException(
status_code=500,
detail=f"Server error: {str(e)}"

View file

@ -190,7 +190,7 @@ class EstimationService:
rx_spend += drug_price.unit_price * month_times
except Exception as e:
raise e
print(f"Error calculating rx spend for {medication.name}: {e}")
pass
return rx_spend