If you want to gether even further :P ```suggestion self._microgrid, components, connections = await asyncio.gather( self._client.get_microgrid_info() self._client.list_components(), self._client.list_connections(), ) self._graph = ComponentGraph(set(components), set(connections)) ``` _Originally posted by @llucax in https://github.com/frequenz-floss/frequenz-sdk-python/pull/1295#discussion_r2610247292_