@@ -54,7 +54,6 @@ def __init__(self, text: str, item_type: str, item_uid: str,
5454 self .outer_html = outer_html
5555 self .attributes = attributes
5656
57- # getter get_text() method
5857 @property
5958 def get_text (self ):
6059 """retruns text for embedded objects
@@ -64,7 +63,6 @@ def get_text(self):
6463 """
6564 return self .text
6665
67- # getter get_item_type() method
6866 @property
6967 def get_item_type (self ):
7068 """retruns item_type for embedded objects
@@ -74,7 +72,6 @@ def get_item_type(self):
7472 """
7573 return self .item_type
7674
77- # getter get_item_uid() method
7875 @property
7976 def get_item_uid (self ):
8077 """retruns item_uid for embedded objects
@@ -84,7 +81,6 @@ def get_item_uid(self):
8481 """
8582 return self .item_uid
8683
87- # getter get_content_type_uid() method
8884 @property
8985 def get_content_type_uid (self ):
9086 """retruns content_type_uid for embedded objects
@@ -94,7 +90,6 @@ def get_content_type_uid(self):
9490 """
9591 return self .content_type_uid
9692
97- # getter get_style_type() method
9893 @property
9994 def get_style_type (self ):
10095 """retruns style_type for embedded objects
@@ -104,7 +99,6 @@ def get_style_type(self):
10499 """
105100 return self .style_type
106101
107- # getter get_outer_html() method
108102 @property
109103 def get_outer_html (self ):
110104 """retruns outer_html for embedded objects
@@ -114,7 +108,6 @@ def get_outer_html(self):
114108 """
115109 return self .outer_html
116110
117- # getter get_attributes() method
118111 @property
119112 def get_attributes (self ):
120113 """ retruns attributes for embedded objects
0 commit comments