Skip to content

Commit b1bd9b7

Browse files
committed
fix(archive): handle pylems issue related to includes
See: LEMS/pylems#94 It may not be a bug, needs looking into what the default expected behaviour of `Model` is.
1 parent 3e9e594 commit b1bd9b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyneuroml/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def get_model_file_list(
730730
if lems_def_dir is None:
731731
lems_def_dir = extract_lems_definition_files()
732732

733-
model = Model(include_includes=True, fail_on_missing_includes=True)
733+
model = Model(include_includes=True, fail_on_missing_includes=False)
734734
model.add_include_directory(lems_def_dir)
735735
model.import_from_file(fullrootfile_rel)
736736

0 commit comments

Comments
 (0)