From 85e77c5cc7591bbaa5debd156416a5e763bcee95 Mon Sep 17 00:00:00 2001 From: Lucas Jensen Date: Sat, 18 Jan 2025 19:31:08 -0800 Subject: [PATCH] final testing and cleanup --- client/src/Group/Group.tsx | 2 +- server/app/models/group.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/Group/Group.tsx b/client/src/Group/Group.tsx index 0476492..14994ec 100644 --- a/client/src/Group/Group.tsx +++ b/client/src/Group/Group.tsx @@ -102,7 +102,7 @@ function Group(props: GroupProps) { A PDF of the program fo the current livestream diff --git a/server/app/models/group.py b/server/app/models/group.py index ef770d4..862d9ce 100644 --- a/server/app/models/group.py +++ b/server/app/models/group.py @@ -6,5 +6,7 @@ class Group(BaseModel): name: str bio: str livestream_id: str = "" - livestream_program_cld_id: Optional[str] = None # not a FK! references a cloudinary ID + livestream_program_cld_id: Optional[str] = ( + None # not a FK! references a cloudinary ID + ) id: Optional[int] = None