Browse Source

Disable some caption fields

Tulir Asokan 2 years ago
parent
commit
16e0f1ffae
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mauigpapi/types/thread_item.py

+ 2 - 2
mauigpapi/types/thread_item.py

@@ -219,13 +219,13 @@ class Caption(SerializableAttrs):
     # TODO enum-ish thing?
     # TODO enum-ish thing?
     bit_flags: int
     bit_flags: int
     user: BaseResponseUser
     user: BaseResponseUser
-    did_report_as_spam: bool
-    share_enabled: bool
     media_id: int
     media_id: int
 
 
     # Might not be in all captions
     # Might not be in all captions
     is_covered: Optional[bool] = None
     is_covered: Optional[bool] = None
     private_reply_status: Optional[int] = None
     private_reply_status: Optional[int] = None
+    # did_report_as_spam: bool
+    # share_enabled: bool
 
 
 
 
 @dataclass
 @dataclass