We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4871b4 commit 1acd3f6Copy full SHA for 1acd3f6
src/port/proto/types.py
@@ -157,10 +157,10 @@ class UserId(bytes):
157
Represents account user ID.
158
User ID can be UTF-8 string or `bytes`.
159
Internally UserId is represented as `bytes`.
160
- Max user ID size is 20 bytes.
+ Max user ID size is 80 bytes.
161
"""
162
163
- max_size: int = 20
+ max_size: int = 80
164
165
def __new__(cls, userId: Union[bytes, str]) -> "UserId":
166
if isinstance(userId, str):
0 commit comments