Skip to content

Commit b471712

Browse files
committed
fix strutils
1 parent c8c442b commit b471712

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

boltons/strutils.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -570,17 +570,9 @@ def bytes2human(nbytes, ndigits=0):
570570

571571

572572
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-
=======
580573
def __init__(self) -> None:
581574
super().__init__(convert_charrefs=True)
582575
self.result: list[str] = []
583-
>>>>>>> Stashed changes
584576

585577
def handle_data(self, d):
586578
self.result.append(d)

0 commit comments

Comments
 (0)