From 591af135fcd7b307db1d88e665355e697495eed5 Mon Sep 17 00:00:00 2001 From: Tim van Katwijk Date: Sun, 4 Dec 2022 22:12:12 +0100 Subject: [PATCH] more coverage --- tests/test_parser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_parser.py b/tests/test_parser.py index 2ac4403..433f9e1 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -87,6 +87,8 @@ def test_image_name_hash(self, image_string, dictionary): hash(image) def test_image_name_repr(self, image_string, dictionary): + # so linter won't trip on unused argument + del dictionary image = ImageName.parse(image_string) repr(image)