NeuralEnsemble / PyNN

A Python package for simulator-independent specification of neuronal network models.
Other
275 stars 125 forks source link

Population describe String template broken. #769

Closed Christian-B closed 1 year ago

Christian-B commented 1 year ago

The template for population https://github.com/NeuralEnsemble/PyNN/blob/master/pyNN/descriptions/templates/string/projection_default.txt

has the line: Cell type : $celltype.name

yet is the Scelltype returns a dict with a name value as expected. The result is:

Cell type : {'name': 'IF_curr_exp'}.name

and not the expected

Cell type : 'IF_curr_exp'

apdavison commented 1 year ago

this should be fixed in #770