Skip to content

Commit

Permalink
Fix missing population coordinate import
Browse files Browse the repository at this point in the history
  • Loading branch information
frthjf committed Feb 23, 2024
1 parent beca1f7 commit 2796e16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/miv_simulator/interface/neuroh5_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 2796e16

Please sign in to comment.