Are there any plans for type hint / mypy support?
OrderedSet is not a generic type, so it's not possible to use OrderedSet[str].
- An
OrderedSet of strings is not considered compatible with typing.Set[str] or typing.Iterable[str], making it not sit well in type-hinted projects.