Browse Source

rm redundant typing

Ian Paul 5 months ago
parent
commit
637446ffa9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exo/networking/manual/manual_discovery.py

+ 1 - 1
exo/networking/manual/manual_discovery.py

@@ -112,7 +112,7 @@ class ManualDiscovery(Discovery):
             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