File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616class AnnotationCount (BaseModel ):
1717 Highlight : int | None = None
18+ FileAttachment : int | None = None
1819 Ink : int | None = None
1920 Link : int | None = None
21+ Polygon : int | None = None
22+ Popup : int | None = None
2023 Text : int | None = None
2124 Widget : int | None = None
2225
2326 def items (self ) -> list [tuple [str , int ]]:
2427 return [
2528 ("Highlight" , self .Highlight if self .Highlight else 0 ),
26- ("Link " , self .Link if self .Link else 0 ),
29+ ("FileAttachment " , self .FileAttachment if self .FileAttachment else 0 ),
2730 ("Ink" , self .Ink if self .Ink else 0 ),
31+ ("Link" , self .Link if self .Link else 0 ),
32+ ("Polygon" , self .Polygon if self .Polygon else 0 ),
33+ ("Popup" , self .Popup if self .Popup else 0 ),
2834 ("Text" , self .Text if self .Text else 0 ),
2935 ("Widget" , self .Widget if self .Widget else 0 ),
3036 ]
You can’t perform that action at this time.
0 commit comments