From e908b8055596329f0b4ba1bc0dc1c793b437299f Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Wed, 4 Aug 2021 10:29:44 +0100 Subject: Fix missing trailing commas. Add flake8-commas to ensure this stays the case. --- jsonschema/tests/test_exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jsonschema/tests/test_exceptions.py') diff --git a/jsonschema/tests/test_exceptions.py b/jsonschema/tests/test_exceptions.py index a285550..788d316 100644 --- a/jsonschema/tests/test_exceptions.py +++ b/jsonschema/tests/test_exceptions.py @@ -41,7 +41,7 @@ class TestBestMatch(TestCase): "minProperties": 2, "anyOf": [{"type": "string"}, {"type": "number"}], "oneOf": [{"type": "string"}, {"type": "number"}], - } + }, ) best = self.best_match(validator.iter_errors({})) self.assertEqual(best.validator, "minProperties") -- cgit v1.2.1