Skip to content

Commit

Permalink
debugging: handling new obj_model verifacation objects while core is …
Browse files Browse the repository at this point in the history
…reorganised
  • Loading branch information
balazs1987 committed Apr 19, 2018
1 parent cdde05e commit 363a18f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion wc_kb/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,12 @@ def run(self, core_path, seq_path):
:obj:`ValueError`: if :obj:`core_path` defines multiple knowledge bases
"""
_, ext = os.path.splitext(core_path)
objects = io.get_reader(ext)().run(core_path, models=Writer.model_order)
objects = io.get_reader(ext)().run(core_path,
models=Writer.model_order,
ignore_sheet_order=True,
ignore_attribute_order=True,
ignore_missing_attributes=True,
include_all_attributes=False)

if not objects[core.KnowledgeBase]:
return None
Expand Down

0 comments on commit 363a18f

Please sign in to comment.