Skip to content

Commit

Permalink
renamed types.py to owl_datatype.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alkidbaci committed Apr 17, 2024
1 parent 8ee54e7 commit e6ad4b9
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion owlapy/class_expression/restriction.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ..data_ranges import OWLPropertyRange, OWLDataRange
from ..owl_literal import OWLLiteral
from ..owl_individual import OWLIndividual
from ..types import OWLDatatype
from ..owl_datatype import OWLDatatype
from ..owl_object import OWLObject
from owlapy.vocab import OWLFacet
from datetime import datetime, date
Expand Down
2 changes: 1 addition & 1 deletion owlapy/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from owlapy.owl_literal import OWLLiteral, TopOWLDatatype
from owlapy.owl_property import OWLObjectProperty, OWLDataProperty
from owlapy.owl_object import OWLEntity
from owlapy.types import OWLDatatype
from owlapy.owl_datatype import OWLDatatype
from owlapy.vocab import OWLFacet, OWLRDFVocabulary

_Variable_facet_comp = MappingProxyType({
Expand Down
2 changes: 1 addition & 1 deletion owlapy/owl_axiom.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import TypeVar, List, Optional, Iterable, Generic, Final
from .owl_property import OWLDataPropertyExpression, OWLObjectPropertyExpression
from .owl_object import OWLObject, OWLEntity
from .types import OWLDatatype, OWLDataRange
from .owl_datatype import OWLDatatype, OWLDataRange
from .meta_classes import HasOperands
from .owl_property import OWLPropertyExpression, OWLProperty
from .class_expression import OWLClassExpression, OWLClass
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion owlapy/owl_literal.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from functools import total_ordering
from .owl_annotation import OWLAnnotationValue
from typing import Final, Optional, Union, Set
from .types import OWLDatatype
from .owl_datatype import OWLDatatype
from datetime import datetime, date
from pandas import Timedelta
from owlapy.vocab import OWLRDFVocabulary, XSDVocabulary
Expand Down
2 changes: 1 addition & 1 deletion owlapy/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .owl_object import OWLObjectParser
from .namespaces import Namespaces
from .render import _DL_SYNTAX, _MAN_SYNTAX
from .types import OWLDatatype
from .owl_datatype import OWLDatatype
from .vocab import OWLFacet, OWLRDFVocabulary
from owlapy.class_expression import OWLObjectHasSelf, OWLObjectIntersectionOf, OWLObjectMinCardinality, \
OWLObjectSomeValuesFrom, OWLObjectUnionOf, OWLClass, OWLObjectOneOf, \
Expand Down
2 changes: 1 addition & 1 deletion owlapy/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from owlapy.vocab import OWLFacet
from .data_ranges import OWLNaryDataRange, OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf
from .class_expression import OWLObjectHasValue, OWLFacetRestriction, OWLDatatypeRestriction, OWLObjectOneOf
from .types import OWLDatatype
from .owl_datatype import OWLDatatype


_DL_SYNTAX = types.SimpleNamespace(
Expand Down
2 changes: 1 addition & 1 deletion owlapy/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .data_ranges import OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf, OWLNaryDataRange, OWLDataRange, \
OWLPropertyRange
from .owl_object import OWLObject
from .types import OWLDatatype
from .owl_datatype import OWLDatatype

_HasIRI = TypeVar('_HasIRI', bound=HasIRI) #:
_HasIndex = TypeVar('_HasIndex', bound=HasIndex) #:
Expand Down

0 comments on commit e6ad4b9

Please sign in to comment.