We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6035c11 commit 22c7dcfCopy full SHA for 22c7dcf
README.rst
@@ -65,8 +65,8 @@ Usage Example
65
import adafruit_bmp280
66
67
# Create library object using our Bus I2C port
68
- i2c = busio.I2C(board.SCL, board.SDA) # pylint: disable=invalid-name
69
- bmp280 = adafruit_bmp280.Adafruit_BMP280_I2C(i2c) # pylint: disable=invalid-name
+ i2c = busio.I2C(board.SCL, board.SDA)
+ bmp280 = adafruit_bmp280.Adafruit_BMP280_I2C(i2c)
70
71
# OR create library object using our Bus SPI port
72
# spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
0 commit comments