Skip to content

Commit

Permalink
don't make incorrect assumptions about the data in notion
Browse files Browse the repository at this point in the history
  • Loading branch information
Highfire1 authored May 22, 2024
1 parent a653f19 commit fa297eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notion.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class LCSCExecutive(BaseModel):
# information on the executive
name: str
full_name: str
full_name: str | None
pronouns: str | None
profile_picture: str | None
social_media_links: dict[str, str]
Expand All @@ -21,9 +21,9 @@ class LCSCExecutive(BaseModel):
# information on their term with the club
roles: list[str]
prior_roles: list[str] | None
first_term: str
first_term: str | None
last_term: str | None
current_status: str
current_status: str | None

# meta information
student_id: str | None
Expand Down

0 comments on commit fa297eb

Please sign in to comment.