We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ccc21 commit d9a8f33Copy full SHA for d9a8f33
test/test_issues/test_issue3126.py
@@ -1,4 +1,3 @@
1
-
2
import pytest
3
4
from rdflib import Graph
@@ -10,11 +9,13 @@ def test_skolem_de_skolem_roundtrip():
10
9
Issue: https://github.com/RDFLib/rdflib/issues/3126
11
"""
12
13
- nt = '<http://example.com> <http://example.com> "http://example.com [some remark]" .'
+ nt = (
+ '<http://example.com> <http://example.com> "http://example.com [some remark]" .'
14
+ )
15
16
graph = Graph().parse(data=nt, format="nt").de_skolemize()
17
18
try:
19
graph.de_skolemize()
20
except BaseException as ex:
- pytest.fail(f'Unexpected error: {ex}')
21
+ pytest.fail(f"Unexpected error: {ex}")
0 commit comments