diff --git a/src/miv_simulator/interface/neuroh5_graph.py b/src/miv_simulator/interface/neuroh5_graph.py index cdfe83c..820ae00 100644 --- a/src/miv_simulator/interface/neuroh5_graph.py +++ b/src/miv_simulator/interface/neuroh5_graph.py @@ -27,8 +27,8 @@ def __call__(self) -> None: if name == "network_architecture": self.network = u elif name == "connections": - populations = read_population_names(u.config.forest_filepath) - for p in populations: + for p in read_population_names(u.config.forest_filepath): + populations.append(p) if p in self.connections: raise ValueError( f"Redundant distance connection specification for population {p}"