We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c442b commit b471712Copy full SHA for b471712
1 file changed
boltons/strutils.py
@@ -570,17 +570,9 @@ def bytes2human(nbytes, ndigits=0):
570
571
572
class HTMLTextExtractor(HTMLParser):
573
-<<<<<<< Updated upstream
574
- def __init__(self):
575
- self.reset()
576
- self.strict = False
577
- self.convert_charrefs = True
578
- self.result = []
579
-=======
580
def __init__(self) -> None:
581
super().__init__(convert_charrefs=True)
582
self.result: list[str] = []
583
->>>>>>> Stashed changes
584
585
def handle_data(self, d):
586
self.result.append(d)
0 commit comments