@@ -81,7 +81,7 @@ def test_format_jsonld_output_jsonld() -> None:
8181 subject_file = "format_jsonld_output_jsonld.jsonld"
8282 asserted_format = _guess_format (subject_file )
8383 assert asserted_format == "json-ld"
84- graph = _parse_graph (subject_file , asserted_format )
84+ _parse_graph (subject_file , asserted_format )
8585
8686
8787@pytest .mark .xfail (
@@ -107,7 +107,7 @@ def test_format_jsonld_output_unspecified() -> None:
107107 subject_file = "format_jsonld_output_unspecified.jsonld"
108108 asserted_format = _guess_format (subject_file )
109109 assert asserted_format == "json-ld"
110- graph = _parse_graph (subject_file , asserted_format )
110+ _parse_graph (subject_file , asserted_format )
111111
112112
113113@pytest .mark .xfail (
@@ -124,7 +124,7 @@ def test_format_turtle_output_turtle() -> None:
124124 subject_file = "format_turtle_output_turtle.ttl"
125125 asserted_format = _guess_format (subject_file )
126126 assert asserted_format == "turtle"
127- graph = _parse_graph (subject_file , asserted_format )
127+ _parse_graph (subject_file , asserted_format )
128128
129129
130130def test_format_turtle_output_txt () -> None :
@@ -138,7 +138,7 @@ def test_format_turtle_output_unspecified() -> None:
138138 subject_file = "format_turtle_output_unspecified.ttl"
139139 asserted_format = _guess_format (subject_file )
140140 assert asserted_format == "turtle"
141- graph = _parse_graph (subject_file , asserted_format )
141+ _parse_graph (subject_file , asserted_format )
142142
143143
144144@pytest .mark .xfail (
0 commit comments