128 """ |
128 """ |
129 if self.__activeClass is not None: |
129 if self.__activeClass is not None: |
130 attributeName = self.__activeClass.replace(self.ClassPrefix, "") |
130 attributeName = self.__activeClass.replace(self.ClassPrefix, "") |
131 self.__results[-1][attributeName] = data |
131 self.__results[-1][attributeName] = data |
132 |
132 |
133 def handle_endtag(self, tag): |
133 def handle_endtag(self, tag): # noqa: U100 |
134 """ |
134 """ |
135 Public method to process the end tag. |
135 Public method to process the end tag. |
136 |
136 |
137 @param tag tag name (all lowercase) |
137 @param tag tag name (all lowercase) |
138 @type str |
138 @type str |