We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4030598 commit 8a8ce2fCopy full SHA for 8a8ce2f
src/miv_simulator/interface/network.py
@@ -30,7 +30,10 @@ def launch(self):
30
31
populations = self.config.populations
32
if populations is None:
33
- populations = list(config.synapses.keys())
+ populations = []
34
+ for pre, v in config.synapses.items():
35
+ populations.append(pre)
36
+ populations.extend(list(v.keys()))
37
38
self.h5_types = get(
39
"miv_simulator.interface.h5_types",
0 commit comments