← back to Exo
rm redundant typing
637446ffa91f44c19ad73107143aa53d099012e5 · 2024-11-15 11:03:35 +0700 · Ian Paul
Files touched
M exo/networking/manual/manual_discovery.py
Diff
commit 637446ffa91f44c19ad73107143aa53d099012e5
Author: Ian Paul <iandouglaspaul@gmail.com>
Date: Fri Nov 15 11:03:35 2024 +0700
rm redundant typing
---
exo/networking/manual/manual_discovery.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/exo/networking/manual/manual_discovery.py b/exo/networking/manual/manual_discovery.py
index 9237a860..ab2bb9e2 100644
--- a/exo/networking/manual/manual_discovery.py
+++ b/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
← a31f9e6c fix test warnings
·
back to Exo
·
rm redundant cleanup task 2eadaa2c →