Skip to content

Commit

Permalink
Disabling buggy pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jesper-friis committed Nov 6, 2024
1 parent efadfd2 commit 8d7c5d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ontopy/ontology.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from owlready2 import AnnotationPropertyClass

from ontopy.factpluspluswrapper.sync_factpp import sync_reasoner_factpp
from ontopy.utils import (
from ontopy.utils import ( # pylint: disable=cyclic-import
english,
asstring,
read_catalog,
Expand Down
6 changes: 4 additions & 2 deletions ontopy/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
import owlready2
from owlready2 import AnnotationPropertyClass, ThingClass, PropertyClass
from owlready2 import Metadata, Thing, Restriction, Namespace
from ontopy.utils import EMMOntoPyException
from ontopy.ontology import Ontology as OntopyOntology
from ontopy.utils import EMMOntoPyException # pylint: disable=cyclic-import
from ontopy.ontology import ( # pylint: disable=cyclic-import
Ontology as OntopyOntology,
)


def render_func(entity):
Expand Down

0 comments on commit 8d7c5d8

Please sign in to comment.