Skip to content

Commit

Permalink
Add more items to the ignore list for NEST synapse models
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Apr 28, 2017
1 parent 62e58a1 commit 1a883af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyNN/nest/synapses.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def get_synapse_defaults(model_name):
defaults = nest.GetDefaults(model_name)
ignore = ['max_delay', 'min_delay', 'num_connections',
'num_connectors', 'receptor_type', 'synapsemodel',
'property_object', 'element_type', 'type', 'sizeof']
'property_object', 'element_type', 'type', 'sizeof',
'has_delay', 'synapse_model', 'requires_symmetric',
'weight_recorder']
default_params = {}
for name, value in defaults.items():
if name not in ignore:
Expand Down

0 comments on commit 1a883af

Please sign in to comment.