Skip to content

Commit

Permalink
rm redundant typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpaul10 committed Nov 25, 2024
1 parent f0ada61 commit c557f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exo/networking/manual/manual_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async def _get_peers(self):
f"one of the keys in the config file: {[k for k, _ in topology.peers]}"
)

peers_in_network: Dict[str, PeerConfig] = topology.peers
peers_in_network = topology.peers
peers_in_network.pop(self.node_id)

self._cached_peers = peers_in_network
Expand Down

0 comments on commit c557f21

Please sign in to comment.