(tag: str)
| 11 | |
| 12 | |
| 13 | def hn(tag: str) -> int: |
| 14 | if tag[0] == "h" and len(tag) == 2: |
| 15 | n = tag[1] |
| 16 | if "0" < n <= "9": |
| 17 | return int(n) |
| 18 | return 0 |
| 19 | |
| 20 | |
| 21 | def dumb_property_dict(style: str) -> Dict[str, str]: |
no outgoing calls
no test coverage detected