We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36dcd70 commit 1593fa3Copy full SHA for 1593fa3
1 file changed
stdlib/html/__init__.pyi
@@ -1,6 +1,4 @@
1
-from typing import AnyStr
2
-
3
__all__ = ["escape", "unescape"]
4
5
-def escape(s: AnyStr, quote: bool = True) -> AnyStr: ...
6
-def unescape(s: AnyStr) -> AnyStr: ...
+def escape(s: str, quote: bool = True) -> str: ...
+def unescape(s: str) -> str: ...
0 commit comments