Skip to content

Commit 69a9900

Browse files
committed
style: apply black
1 parent ff0acf8 commit 69a9900

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/cobra/test/test_io/test_json.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ def test_validate_json(
2525
) -> None:
2626
"""Validate file according to JSON-schema."""
2727
jsonschema = pytest.importorskip("jsonschema")
28-
with open(
29-
join(data_directory, "mini.json"), "r", encoding="utf-8"
30-
) as infile:
28+
with open(join(data_directory, "mini.json"), "r", encoding="utf-8") as infile:
3129
loaded = json.load(infile)
3230
assert jsonschema.validate(loaded, json_schema_v1) is None
3331

0 commit comments

Comments
 (0)