From 725d68f195074596384b4db8405cb502c5d4a8de Mon Sep 17 00:00:00 2001 From: khushal Date: Mon, 9 Dec 2024 12:53:43 +0530 Subject: [PATCH] (20241209) Another frozen field bug fix. --- models/data/core/auth_token.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/data/core/auth_token.py b/models/data/core/auth_token.py index 22bc14b..43f0ebb 100644 --- a/models/data/core/auth_token.py +++ b/models/data/core/auth_token.py @@ -135,13 +135,13 @@ class CoreAuthTokenModel(BaseModel): auth: dict | None = Field( description = "any direct auth details like api keys or passwords; will differ for each client", - frozen = True, + frozen = False, default = None ) token: dict | None = Field( description = "the actual auth tokens of that client; will differ for each client", - frozen = True, + frozen = False, default = None )