Last active
March 20, 2024 18:17
-
-
Save rsalaza4/d7c7b62d52b71400551fcab496c8ad78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Resume: | |
| def __init__(self, text): | |
| self.text = text | |
| self.firstName = "" | |
| self.lastName = "" | |
| self.emailAddress = "" | |
| self.universities = [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment