You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to run ontodoc for the new domain-battery locally ends up with a bug in ontodoc.py where it is running through entities, checking instances in it and iterating over an item's is_instance_of property, expecting it to be iterable. However, in the local case, it is not, which raises a TypeError.
This can be remedied by introducing a try/except test, passing for TypeError.
The text was updated successfully, but these errors were encountered:
Trying to run
ontodoc
for the new domain-battery locally ends up with a bug inontodoc.py
where it is running through entities, checking instances in it and iterating over an item'sis_instance_of
property, expecting it to be iterable. However, in the local case, it is not, which raises aTypeError
.This can be remedied by introducing a
try/except
test, passing forTypeError
.The text was updated successfully, but these errors were encountered: