Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeandemeusy committed Mar 5, 2024
1 parent 081d4eb commit 24e6695
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ct-app/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def __init__(self):
self.tasks = set[asyncio.Task]()

self.connected = LockedVar("connected", False)
self.address = None

self.all_peers = LockedVar("all_peers", set[Peer]())
self.topology_list = LockedVar("topology_list", list[TopologyEntry]())
Expand Down Expand Up @@ -74,7 +75,9 @@ def network_nodes(self) -> list[Node]:

@property
async def network_nodes_addresses(self) -> list[Address]:
return await asyncio.gather(*[node.address.get() for node in self.network_nodes])
return await asyncio.gather(
*[node.address.get() for node in self.network_nodes]
)

@property
def safes_balance_subgraph_type(self) -> SubgraphType:
Expand Down

0 comments on commit 24e6695

Please sign in to comment.