From 5e85a34316502b799dfef0b0f352b346032aaf32 Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Sun, 14 Jul 2024 11:50:27 -0400 Subject: [PATCH] update defaults --- code/util/structs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/util/structs.py b/code/util/structs.py index 7fb3d6e..571b378 100644 --- a/code/util/structs.py +++ b/code/util/structs.py @@ -16,9 +16,9 @@ class StudentProfileDetails(BaseModel): username: str name: str email: EmailStr - linkedin: Optional[HttpUrl] - github: Optional[HttpUrl] - website: Optional[HttpUrl] + linkedin: Optional[HttpUrl] = "" + github: Optional[HttpUrl] = "" + website: Optional[HttpUrl] = "" degrees: List[DegreeListing] bio: str skills: List[str]