From 142d22616cbf930241165cb4fbc10dc552979901 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 16 Apr 2025 17:30:33 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_config_schema.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/test_config_schema.py b/tests/test_config_schema.py index 8863fbf..e621aea 100644 --- a/tests/test_config_schema.py +++ b/tests/test_config_schema.py @@ -3,9 +3,11 @@ Unit test functions to test JSON Schema validation """ import jsonschema + from tljh.config_schema import config_schema + def test_valid_config_json_schema(): - """Validate that the JSON schema fits its $schema specification""" - validator_class = jsonschema.validators.validator_for(config_schema) - validator_class.check_schema(config_schema) + """Validate that the JSON schema fits its $schema specification""" + validator_class = jsonschema.validators.validator_for(config_schema) + validator_class.check_schema(config_schema)