]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - src/board.py
Massive pylinting session and added Github Actions
[Adafruit_Blinka-hackapet.git] / src / board.py
index 30b9f0ac077ce9a846164ef8c1aad9d0db30f765..9f0f1618c0bb9477508d7b467bfcfd75008542fb 100755 (executable)
@@ -152,12 +152,16 @@ elif "sphinx" in sys.modules:
 else:
     raise NotImplementedError("Board not supported {}".format(board_id))
 
+
 def I2C():
     """The singleton I2C interface"""
     import busio
+
     return busio.I2C(SCL, SDA)
 
+
 def SPI():
     """The singleton SPI interface"""
     import busio
+
     return busio.SPI(SCLK, MOSI, MISO)