From 38a6389e2c5e0afe52dcff0dcb662a01cf435781 Mon Sep 17 00:00:00 2001 From: Gray Manley Date: Mon, 20 Feb 2023 00:33:30 -0600 Subject: [PATCH] Fix lint. --- test/test_postprocessor.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_postprocessor.py b/test/test_postprocessor.py index 867014cf..650bf596 100644 --- a/test/test_postprocessor.py +++ b/test/test_postprocessor.py @@ -290,7 +290,10 @@ class MetadataTest(BasePostprocessorTest): def test_metadata_tags_list_of_dict(self): self._create( {"mode": "tags"}, - {"tags": [{"g": "foobar1", "m": "foobar2"}, {"g": None, "m": "foobarbaz"}]}, + {"tags": [ + {"g": "foobar1", "m": "foobar2"}, + {"g": None, "m": "foobarbaz"} + ]}, ) with patch("builtins.open", mock_open()) as m: self._trigger()