Skip to content

Commit ce93b8c

Browse files
committed
fmt
1 parent 1baf46a commit ce93b8c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_generic_agnostic_board_analogio.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import board
66
import analogio
77

8+
89
# Analog Outputs
910
def test_Ax_OUTPUT():
1011
"""Test analog output pin functionality."""
@@ -102,7 +103,6 @@ def test_Ax_INPUT_WAVE_SINE():
102103
for i, expected_value in enumerate(sine_wave):
103104
assert pin_sine_wave.value == expected_value
104105

105-
106106
# Run through the sine wave again to ensure it loops back correctly
107107
for i, expected_value in enumerate(sine_wave):
108108
assert pin_sine_wave.value == expected_value
@@ -123,5 +123,4 @@ def test_Ax_INPUT_WAVE_SAW():
123123
for i in range(len(sawtooth_wave)):
124124
assert pin_saw_wave.value == sawtooth_wave[i]
125125

126-
127126
pin_saw_wave.deinit()

tests/test_generic_agnostic_board_i2c.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# SPDX-FileCopyrightText: 2024 Brent Rubell for Adafruit Industries
22
#
33
# SPDX-License-Identifier: MIT
4-
import pytest # pylint: disable=unused-import
4+
import pytest # pylint: disable=unused-import
55
import busio
66
from board import SCL, SDA
77

8+
89
def test_i2c_scan_random():
910
i2c = busio.I2C(SCL, SDA)
1011
i2c.try_lock()

0 commit comments

Comments
 (0)