Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Jan 9, 2025
1 parent 0703108 commit e01eae6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions arango_rdf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2563,9 +2563,7 @@ def __load_meta_ontology(self, rdf_graph: RDFGraph) -> RDFDataset:
"""

graph: RDFDataset = (
rdf_graph
if isinstance(rdf_graph, RDFDataset)
else RDFDataset() + rdf_graph
rdf_graph if isinstance(rdf_graph, RDFDataset) else RDFDataset() + rdf_graph
)

for ns in os.listdir(f"{PROJECT_DIR}/meta"):
Expand Down

0 comments on commit e01eae6

Please sign in to comment.