We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42424f3 commit 2e38e82Copy full SHA for 2e38e82
neuroml/loaders.py
@@ -49,12 +49,12 @@ def __nml2_doc(cls, file_name: str) -> neuroml.NeuroMLDocument:
49
if supressGeneratedsWarnings:
50
warnings.simplefilter("ignore")
51
nml2_doc = nmlparse(file_name, silence=True)
52
- utils.move_undetermined_gates_to_typed(nml2_doc)
53
54
warnings.resetwarnings()
55
except Exception as e:
56
raise Exception("Not a valid NeuroML 2 doc (%s): %s" % (file_name, e), e)
57
+ utils.move_undetermined_gates_to_typed(nml2_doc)
58
return nml2_doc
59
60
0 commit comments