Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/html2text/elements.py: 69%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

13 statements  

1from typing import Dict, Optional 

2 

3 

4class AnchorElement: 

5 __slots__ = ["attrs", "count", "outcount"] 

6 

7 def __init__(self, attrs: Dict[str, Optional[str]], count: int, outcount: int): 

8 self.attrs = attrs 

9 self.count = count 

10 self.outcount = outcount 

11 

12 

13class ListElement: 

14 __slots__ = ["name", "num"] 

15 

16 def __init__(self, name: str, num: int): 

17 self.name = name 

18 self.num = num