Skip to content

Commit 142d226

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

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/test_config_schema.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
"""
44

55
import jsonschema
6+
67
from tljh.config_schema import config_schema
78

9+
810
def test_valid_config_json_schema():
9-
"""Validate that the JSON schema fits its $schema specification"""
10-
validator_class = jsonschema.validators.validator_for(config_schema)
11-
validator_class.check_schema(config_schema)
11+
"""Validate that the JSON schema fits its $schema specification"""
12+
validator_class = jsonschema.validators.validator_for(config_schema)
13+
validator_class.check_schema(config_schema)

0 commit comments

Comments
 (0)