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
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
1from typing import Dict, Optional
4class AnchorElement:
5 __slots__ = ["attrs", "count", "outcount"]
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
13class ListElement:
14 __slots__ = ["name", "num"]
16 def __init__(self, name: str, num: int):
17 self.name = name
18 self.num = num