Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra authored Jul 16, 2024
1 parent d606991 commit f4c1f3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ssd1351.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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]),
Expand Down

0 comments on commit f4c1f3a

Please sign in to comment.