From 0faf7d3bc639e533334ed6c098c43b9397cfb36b Mon Sep 17 00:00:00 2001 From: Nelson Vega Date: Sun, 11 Jan 2026 19:44:53 -0500 Subject: [PATCH] fix: change uid field in QCCollaborator to Optional[int] --- lean/models/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lean/models/api.py b/lean/models/api.py index 35863384..3cdbb14f 100644 --- a/lean/models/api.py +++ b/lean/models/api.py @@ -55,7 +55,7 @@ class ProjectEncryptionKey(WrappedBaseModel): name: str class QCCollaborator(WrappedBaseModel): - uid: int + uid: Optional[int] liveControl: bool permission: str profileImage: str