Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected expected number of returned arguments #404

Merged
merged 1 commit into from
Apr 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion examples/ontology-from-excel/make_microstructure_onto.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
from ontopy.excelparser import create_ontology_from_excel
from ontopy.utils import write_catalog

ontology, catalog = create_ontology_from_excel("tool/microstructure.xlsx")
ontology, catalog, errdict = create_ontology_from_excel(
"tool/microstructure.xlsx"
)

ontology.save("microstructure_ontology.ttl", format="turtle", overwrite=True)
write_catalog(catalog)
2 changes: 1 addition & 1 deletion ontopy/excelparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def create_ontology_from_excel( # pylint: disable=too-many-arguments
imports: list = None,
catalog: dict = None,
force: bool = False,
) -> Tuple[ontopy.ontology.Ontology, dict]:
) -> Tuple[ontopy.ontology.Ontology, dict, dict]:
"""
Creates an ontology from an Excel-file.

Expand Down
2 changes: 1 addition & 1 deletion tools/excel2onto
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main():
sys.exit(exc.code) # Exit without traceback on invalid arguments

try:
ontology, catalog = create_ontology_from_excel(
ontology, catalog, _ = create_ontology_from_excel(
args.excelpath, force=args.force
)
except ExcelError as exc:
Expand Down