]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - test/src/testing/board/i2c.py
remove unnecessary function bodies
[Adafruit_Blinka-hackapet.git] / test / src / testing / board / i2c.py
index 0109560dbebbee1ee300003c2827362a27c6e6c9..e9d9702c55894bb4fb4f773f087e3e0519e6bcc3 100644 (file)
@@ -1,7 +1,11 @@
+# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
+#
+# SPDX-License-Identifier: MIT
 from adafruit_blinka import agnostic
+
 if agnostic.board in ("feather_m0_express", "feather_huzzah"):
     from bitbangio import I2C
 elif agnostic.board == "pyboard":
     from busio import I2C
 else:
-    raise NotImplementedError("Board not supported")
\ No newline at end of file
+    raise NotImplementedError("Board not supported")