]> Repositories - hackapet/Adafruit_Blinka.git/blobdiff - src/busio.py
missed a black
[hackapet/Adafruit_Blinka.git] / src / busio.py
index a11957482fd7135804e70cb2deb0b5cd04d7d489..2106a24cdf4b2e9a17ab446ed2205e05ec279f37 100755 (executable)
@@ -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