From 2806a2a66ca423354425bd4aa75a3a8dba16b58b Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Mon, 19 May 2025 18:13:28 -0700 Subject: [PATCH] fix(auth): adding missing default --- src/dispatch/auth/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/auth/models.py b/src/dispatch/auth/models.py index 8249cb76fd32..00a90cc596c0 100644 --- a/src/dispatch/auth/models.py +++ b/src/dispatch/auth/models.py @@ -202,7 +202,7 @@ class UserRead(UserBase): id: PrimaryKey role: str | None = None - experimental_features: bool | None + experimental_features: bool | None = None class UserUpdate(DispatchBase):