Skip to content

Commit

Permalink
fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
omashkova committed Nov 6, 2024
1 parent 32f923f commit 6584d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mowl/base_models/elmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def __init__(self,
if not isinstance(extended, bool):
raise TypeError("Optional parameter extended must be of type bool.")

if not isinstance(load_normalized, bool):
raise TypeError("Optional parameter load_normalized must be of type bool.")
# if not isinstance(load_normalized, bool):
# raise TypeError("Optional parameter load_normalized must be of type bool.")

if not isinstance(device, str):
raise TypeError("Optional parameter device must be of type str.")
Expand Down
1 change: 1 addition & 0 deletions mowl/datasets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from mowl.owlapi.adapter import OWLAPIAdapter
from mowl.owlapi.defaults import TOP, BOT
from deprecated.sphinx import versionadded, versionchanged
from mowl.ontology.normalize import ELNormalizer


from java.util import HashSet
Expand Down

0 comments on commit 6584d04

Please sign in to comment.