Skip to content
Snippets Groups Projects
Unverified Commit 89e09dcc authored by Brent Huisman's avatar Brent Huisman Committed by GitHub
Browse files

Python API: neuron_cable_propetries->neuron_cable_properties (#1294)

parent 808bb8fc
No related branches found
No related tags found
No related merge requests found
......@@ -482,7 +482,7 @@ void register_cells(pybind11::module& m) {
"Register the pointer to the mechanism catalogue in the global properties")
.def("__str__", [](const arb::cable_cell_global_properties& p){return to_string(p);});
m.def("neuron_cable_propetries", []() {
m.def("neuron_cable_properties", []() {
arb::cable_cell_global_properties prop;
prop.default_parameters = arb::neuron_parameter_defaults;
return prop;
......
......@@ -62,7 +62,7 @@ class ring_recipe (arbor.recipe):
# all memory in the C++ class is initialized correctly.
arbor.recipe.__init__(self)
self.ncells = n
self.props = arbor.neuron_cable_propetries()
self.props = arbor.neuron_cable_properties()
self.cat = arbor.default_catalogue()
self.props.register(self.cat)
......
......@@ -12,7 +12,7 @@ class single_recipe (arbor.recipe):
arbor.recipe.__init__(self)
self.the_cell = cell
self.the_probes = probes
self.the_props = arbor.neuron_cable_propetries()
self.the_props = arbor.neuron_cable_properties()
self.the_cat = arbor.default_catalogue()
self.the_props.register(self.the_cat)
......
......@@ -34,7 +34,7 @@ class cc_recipe(A.recipe):
self.cell = A.cable_cell(st, A.label_dict(), dec)
self.cat = A.default_catalogue()
self.props = A.neuron_cable_propetries()
self.props = A.neuron_cable_properties()
self.props.register(self.cat)
def num_cells(self):
......
......@@ -30,7 +30,7 @@ class cc2_recipe(A.recipe):
st.append(i, (1, -4, 0, 3), 1)
self.the_morphology = A.morphology(st)
self.the_cat = A.default_catalogue()
self.the_props = A.neuron_cable_propetries()
self.the_props = A.neuron_cable_properties()
self.the_props.register(self.the_cat)
def num_cells(self):
......
......@@ -26,7 +26,7 @@ class lifN_recipe(A.recipe):
A.recipe.__init__(self)
self.n_cell = n_cell
self.cat = A.default_catalogue()
self.props = A.neuron_cable_propetries()
self.props = A.neuron_cable_properties()
self.props.register(self.cat)
def num_cells(self):
return self.n_cell
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment