from __future__ import annotations from streamer.parse.shard import Shard class LocalizedShard(Shard): location: dict[str, str] children: list[LocalizedShard] __all__ = ["LocalizedShard"]