File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -259,10 +259,11 @@ def interactive_menu():
259
259
("Education" , 3 ),
260
260
("Skills" , 4 ),
261
261
("Projects" , 5 ),
262
- ("Certifications" , 6 ),
263
- ("Achievements" , 7 ),
264
- ("Generate PDF" , 8 ),
265
- ("Exit" , 9 )
262
+ ("Internships" , 6 ),
263
+ ("Certifications" , 7 ),
264
+ ("Achievements" , 8 ),
265
+ ("Generate PDF" , 9 ),
266
+ ("Exit" , 10 )
266
267
]
267
268
).run ()
268
269
@@ -276,13 +277,15 @@ def interactive_menu():
276
277
add_skills ()
277
278
elif choice == 5 :
278
279
add_projects ()
279
- elif choice == 6 :
280
- add_certifications ()
280
+ elif choice == 6 :
281
+ add_internships ()
281
282
elif choice == 7 :
282
- add_achievements ()
283
+ add_certifications ()
283
284
elif choice == 8 :
284
- generate_pdf ()
285
+ add_achievements ()
285
286
elif choice == 9 :
287
+ generate_pdf ()
288
+ elif choice == 10 :
286
289
break
287
290
288
291
# Start the program
You can’t perform that action at this time.
0 commit comments