From f4c1f3ad307b6a93de6099d2a895ec9a436787c3 Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Tue, 16 Jul 2024 18:20:55 +0200 Subject: [PATCH] fix lint error --- tests/test_ssd1351.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ssd1351.py b/tests/test_ssd1351.py index de6a4cd..50bad1b 100644 --- a/tests/test_ssd1351.py +++ b/tests/test_ssd1351.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2017-18 Richard Hull and contributors +# Copyright (c) 2017-2024 Richard Hull and contributors # See LICENSE.rst for details. import pytest @@ -215,7 +215,7 @@ def command(*cmd): assert recordings == get_reference_data('demo_ssd1351') -@ pytest.mark.parametrize("bit,expected_16_bit_color", [ +@pytest.mark.parametrize("bit,expected_16_bit_color", [ (7, [0b10000100, 0b00010000]), (6, [0b01000010, 0b00001000]), (5, [0b00100001, 0b00000100]),