File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,10 @@ def delay_us(delay):
150
150
from adafruit_blinka .microcontroller .thead .th1520 import *
151
151
elif chip_id == ap_chip .GENERIC_X86 :
152
152
print ("WARNING: GENERIC_X86 is not fully supported. Some features may not work." )
153
- elif "BLINKA_FORCECHIP" in os .environ and os .environ ["BLINKA_FORCEBOARD" ] == "GENERIC_AGNOSTIC_BOARD" :
153
+ elif (
154
+ "BLINKA_FORCECHIP" in os .environ
155
+ and os .environ ["BLINKA_FORCEBOARD" ] == "GENERIC_AGNOSTIC_BOARD"
156
+ ):
154
157
from adafruit_blinka .microcontroller .generic_agnostic_board import *
155
158
elif chip_id is None :
156
159
print (
Original file line number Diff line number Diff line change 1
1
# SPDX-FileCopyrightText: 2024 Brent Rubell for Adafruit Industries
2
2
#
3
3
# SPDX-License-Identifier: MIT
4
- import pytest
4
+ import pytest # pylint: disable=unused-import
5
5
import board
6
6
import digitalio
7
7
You can’t perform that action at this time.
0 commit comments