Skip to content

Commit d9a8f33

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 07ccc21 commit d9a8f33

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/test_issues/test_issue3126.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import pytest
32

43
from rdflib import Graph
@@ -10,11 +9,13 @@ def test_skolem_de_skolem_roundtrip():
109
Issue: https://github.com/RDFLib/rdflib/issues/3126
1110
"""
1211

13-
nt = '<http://example.com> <http://example.com> "http://example.com [some remark]" .'
12+
nt = (
13+
'<http://example.com> <http://example.com> "http://example.com [some remark]" .'
14+
)
1415

1516
graph = Graph().parse(data=nt, format="nt").de_skolemize()
1617

1718
try:
1819
graph.de_skolemize()
1920
except BaseException as ex:
20-
pytest.fail(f'Unexpected error: {ex}')
21+
pytest.fail(f"Unexpected error: {ex}")

0 commit comments

Comments
 (0)