File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -345,12 +345,14 @@ def seed_users(session: Session) -> None:
345345
346346 # Create volunteer_data entry for volunteers with experience text
347347 if user_info ["role" ] == "volunteer" :
348- volunteer_experience_text = user_info .get ("volunteer_experience" ,
348+ volunteer_experience_text = user_info .get (
349+ "volunteer_experience" ,
349350 "My journey with blood cancer started when I was about twelve years old and getting "
350351 "treatment for the first time was extremely stress-inducing. My journey with blood "
351352 "cancer started when I was about twelve years old and getting treatment for the first "
352- "time was extremely stress-inducing." )
353-
353+ "time was extremely stress-inducing." ,
354+ )
355+
354356 volunteer_data = VolunteerData (
355357 user_id = user .id ,
356358 experience = volunteer_experience_text ,
You can’t perform that action at this time.
0 commit comments