Skip to content

Commit 3632e58

Browse files
removed code for generating neuroml2/NeuroML2.specification.xml and changed NeuroML to neuroML
1 parent 66b4aa5 commit 3632e58

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/neuroml2/neuroml2_spec.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ class NeuroML(Base):
100100
Some description...
101101
102102
Args:
103-
id: The id of the NeuroML 2 document
104-
version: NeuroML version used
103+
id: The id of the neuroML 2 document
104+
version: neuroML version used
105105
networks: The networks present
106106
"""
107107

@@ -115,7 +115,7 @@ class NeuroML(Base):
115115

116116
if __name__ == "__main__":
117117

118-
nml_doc = NeuroML(id="TestNeuroML", version="NeuroML_v2.3")
118+
nml_doc = neuroML(id="TestNeuroML", version="NeuroML_v2.3")
119119

120120
izh = Izhikevich2007Cell(
121121
id="izh2007RS0",
@@ -183,5 +183,3 @@ class NeuroML(Base):
183183
yy = yaml.dump(doc_dict, indent=4, sort_keys=False)
184184
print(yy)
185185
d.write(yy)
186-
187-
save_to_xml_file(nml_doc, "NeuroML2.specification.xml")

0 commit comments

Comments
 (0)