From 10e56b9dba23f55c0282a1e0bf5c76cecc0409ef Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 25 Sep 2024 11:09:46 +0200 Subject: [PATCH] fix ruff --- tests/test_pyshacl.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_pyshacl.py b/tests/test_pyshacl.py index 37e1c0c..11fc699 100644 --- a/tests/test_pyshacl.py +++ b/tests/test_pyshacl.py @@ -6,9 +6,11 @@ import pyshacl import pytest from cmem.cmempy.dp.proxy.graph import delete, get, post_streamed -from rdflib import RDF, Graph, URIRef, PROV +from rdflib import PROV, RDF, Graph, URIRef from rdflib.compare import isomorphic + from cmem_plugin_pyshacl.plugin_pyshacl import ShaclValidation + from . import __path__ from .utils import TestExecutionContext, needs_cmem @@ -71,4 +73,3 @@ def test_workflow_execution(_setup: None) -> None: # noqa: PT019 test = Graph().parse(Path(__path__[0]) / "test_pyshacl.ttl", format="turtle") assert isomorphic(result, test) -