Rakshitjan commited on
Commit
075d6ff
·
verified ·
1 Parent(s): 61ff2b8

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -136,7 +136,7 @@ async def generate_roadmap(study_input: StudyInput):
136
  "Maths": maths_roadmap
137
  }
138
 
139
- return final_roadmap
140
  except Exception as e:
141
  raise HTTPException(status_code=500, detail=str(e))
142
 
 
136
  "Maths": maths_roadmap
137
  }
138
 
139
+ return json.dumps(final_roadmap, indent=4)
140
  except Exception as e:
141
  raise HTTPException(status_code=500, detail=str(e))
142