Skip to content

Commit d7b59bc

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

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/test_sparql/test_agg_distinct.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,17 @@ def test_count_optional_values():
124124
"""
125125
g = Graph()
126126
g.bind("ex", "http://example.com/")
127-
g.parse(format="ttl", data="""@prefix ex: <http://example.com/>.
127+
g.parse(
128+
format="ttl",
129+
data="""@prefix ex: <http://example.com/>.
128130
ex:1 a ex:a;
129131
ex:d ex:b.
130132
ex:2 a ex:a;
131133
ex:d ex:c;
132134
ex:d ex:b.
133135
ex:3 a ex:a.
134-
""")
136+
""",
137+
)
135138

136139
query = """
137140
SELECT DISTINCT ?x (COUNT(DISTINCT ?inst) as ?cnt)

0 commit comments

Comments
 (0)