X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/546aa0533b3270fb8922fc8fb1bc2419b5a7ed39..refs/heads/micropython-pyi:/test/src/testing/board/i2c.py diff --git a/test/src/testing/board/i2c.py b/test/src/testing/board/i2c.py index 0109560..e9d9702 100644 --- a/test/src/testing/board/i2c.py +++ b/test/src/testing/board/i2c.py @@ -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")