X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka.git/blobdiff_plain/eabc5490cba488c6beba6a17d295fff327b636c0..3b1b3ea6a1da21f833d57c4d11ea7bf95075b95b:/test/src/testing/board/i2c.py?ds=inline 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")