File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
from annotations_helper import PdfAnnotationsHelper , Config
2
2
from get_annotations import PdfGetAnnotations
3
+ from get_annotation_by_id import PdfGetAnnotationById
3
4
from new_highlight_annotation import PdfAddHighlightAnnotations
4
5
from new_strikeout_annotation import PdfAddStrikeoutAnnotations
5
6
from new_text_annotation import PdfAddFreeTextAnnotations
15
16
modify_ant .modify_annotation ()
16
17
17
18
get_ant = PdfGetAnnotations (helper .pdf_api , helper )
18
- annotation_id = get_ant .get_annotations ()
19
- get_ant .get_annotation (annotation_id )
19
+ annotation_id = get_ant .request_annotations ()
20
+
21
+ rq_ant = PdfGetAnnotationById (helper .pdf_api , helper )
22
+ rq_ant .request_annotation (annotation_id )
20
23
21
24
del_ant = PdfDalTextAnnotations (helper .pdf_api , helper )
22
25
del_ant .delete_annotation ()
34
37
add_ft .append_text_annotation ()
35
38
36
39
add_ul = PdfAddUnderlineAnnotations (helper .pdf_api , helper )
37
- add_ul .append_underline_annotation ()
40
+ add_ul .append_underline_annotation ()
You can’t perform that action at this time.
0 commit comments