From 6a716faf69a82180b0a3059ef91f6fd3d4d54b5a Mon Sep 17 00:00:00 2001 From: caternuson Date: Sat, 24 Apr 2021 17:33:04 -0700 Subject: [PATCH] missed a black --- src/busio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/busio.py b/src/busio.py index a119574..2106a24 100755 --- a/src/busio.py +++ b/src/busio.py @@ -179,8 +179,8 @@ class SPI(Lockable): if detector.board.pico_u2if: from adafruit_blinka.microcontroller.pico_u2if.spi import SPI as _SPI - self._spi = _SPI(clock) # this is really all that's needed - self._pins = (clock, clock, clock) # will determine MOSI/MISO from clock + self._spi = _SPI(clock) # this is really all that's needed + self._pins = (clock, clock, clock) # will determine MOSI/MISO from clock return if detector.board.any_embedded_linux: from adafruit_blinka.microcontroller.generic_linux.spi import SPI as _SPI -- 2.49.0