-
Notifications
You must be signed in to change notification settings - Fork 129
Feat/resume builder internships #117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Feat/resume builder internships #117
Conversation
…rs/minutes/seconds)
👋 @Ericbutler1209 👋 We're delighted to have your pull request! Please take a moment to check our contributing guidelines and ensure you've filled out the PR template for a smooth process. We will review it soon. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds internship functionality to the Resume Builder application, allowing users to input and include internship experiences in their generated resumes.
- Adds internship data structure and collection functionality
- Integrates internship section into the interactive menu system
- Extends PDF generation to include formatted internship details
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
File | Description |
---|---|
Resume Builder/resume_builder.py | Adds internships data field, collection function, menu integration, and PDF generation support |
Geographic Distance/geographic_distance.py | Adds utility functions for coordinate validation and unit conversion |
Digital Clock/main.py | Enhances clock with 12/24-hour toggle, date display, and improved formatting |
Age Calculator/calculate.py | Refactors code with type hints, improved naming, and enhanced output formatting |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
"achievements": [], | ||
"internships":[] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after the colon. Should be "internships": []
to maintain consistent formatting with other dictionary entries.
Copilot uses AI. Check for mistakes.
from time import strftime | ||
from tkinter import Label, Tk | ||
from tkinter import Label, Tk , Button |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra space before comma in the import statement. Should be from tkinter import Label, Tk, Button
.
Copilot uses AI. Check for mistakes.
|
||
localtime = time.localtime(time.time()) | ||
|
||
year = int(age) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redundant conversion: age
is already converted to int on line 21, so year = int(age)
on line 25 is unnecessary. Use year = age
instead.
year = int(age) | |
year = age |
Copilot uses AI. Check for mistakes.
Added internships list to resume_data for storing entries.
Implemented add_internships() function to collect internship role, company, location, dates, and highlights.
Updated interactive menu with a new Internships option and handler.
Extended PDF generation to include an Internships section with formatted details.