Mapping[int, :class:`ShardInfo`]: Returns a mapping of shard IDs to their respective info object.
(self)
| 447 | |
| 448 | @property |
| 449 | def shards(self) -> Dict[int, ShardInfo]: |
| 450 | """Mapping[int, :class:`ShardInfo`]: Returns a mapping of shard IDs to their respective info object.""" |
| 451 | return {shard_id: ShardInfo(parent, self.shard_count) for shard_id, parent in self.__shards.items()} |
| 452 | |
| 453 | async def fetch_session_start_limits(self) -> SessionStartLimits: |
| 454 | """|coro| |