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