massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / bleach / bleach / utils.pyi
1 from collections import OrderedDict
2 from collections.abc import Mapping
3 from typing import Any, overload
4
5 @overload
6 def alphabetize_attributes(attrs: None) -> None: ...
7 @overload
8 def alphabetize_attributes(attrs: Mapping[Any, str]) -> OrderedDict[Any, str]: ...