(20241209) Another frozen field bug fix.

This commit is contained in:
2024-12-09 12:53:43 +05:30
parent e5e185c272
commit 725d68f195
+2 -2
View File
@@ -135,13 +135,13 @@ class CoreAuthTokenModel(BaseModel):
auth: dict | None = Field( auth: dict | None = Field(
description = "any direct auth details like api keys or passwords; will differ for each client", description = "any direct auth details like api keys or passwords; will differ for each client",
frozen = True, frozen = False,
default = None default = None
) )
token: dict | None = Field( token: dict | None = Field(
description = "the actual auth tokens of that client; will differ for each client", description = "the actual auth tokens of that client; will differ for each client",
frozen = True, frozen = False,
default = None default = None
) )