Make another missing inbound property optional

This commit is contained in:
Andrew Ferrazzutti 2022-04-10 04:56:37 -04:00
parent e2c24c3ac5
commit 87b41fbdcc
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class ChannelInfo(Channel):
type: ChannelType
activeUserCount: int
newChatCount: int
newChatCountInvalid: bool
newChatCountInvalid: Optional[bool] = None # NOTE Made optional
lastChatLogId: Long
lastSeenLogId: Long
lastChatLog: Optional[Chatlog] = None