mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
Add type annotations for Python 3 html.entities (#3161)
This commit is contained in:
committed by
Sebastian Rittau
parent
f2fdb54765
commit
02401c836f
@@ -1,6 +1,6 @@
|
||||
from typing import Any
|
||||
from typing import Dict
|
||||
|
||||
name2codepoint: Any
|
||||
html5: Any
|
||||
codepoint2name: Any
|
||||
entitydefs: Any
|
||||
name2codepoint: Dict[str, int]
|
||||
html5: Dict[str, str]
|
||||
codepoint2name: Dict[int, str]
|
||||
entitydefs: Dict[str, str]
|
||||
|
||||
Reference in New Issue
Block a user