Skip to content

Commit

Permalink
Merge pull request #20 from dice-group/refactoring_owl
Browse files Browse the repository at this point in the history
WIP:Refactoring:OWL axioms, Data Types, and Individuals
  • Loading branch information
Demirrr authored Apr 8, 2024
2 parents 9a1c999 + e5db406 commit 3d3aad5
Show file tree
Hide file tree
Showing 9 changed files with 2,217 additions and 2,201 deletions.
2,402 changes: 204 additions & 2,198 deletions owlapy/model/__init__.py

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion owlapy/owl_annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from .owlobject import OWLObject
from typing import Optional


class OWLAnnotationObject(OWLObject, metaclass=ABCMeta):
"""A marker interface for the values (objects) of annotations."""
__slots__ = ()
Expand Down Expand Up @@ -44,4 +45,4 @@ def as_literal(self) -> Optional['OWLLiteral']:
Returns:
if the value is a literal, returns it. Return None otherwise
"""
return None
return None
Loading

0 comments on commit 3d3aad5

Please sign in to comment.