Skip to content

Commit 2296f05

Browse files
committed
pylint fixes
1 parent b043cf5 commit 2296f05

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/bme680_simpletest.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import gc
1+
import time
22
from busio import I2C
33
import adafruit_bme680
4-
import time
54
import board
65

76
# Create library object using our Bus I2C port
@@ -17,5 +16,5 @@
1716
print("Humidity: %0.1f %%" % bme680.humidity)
1817
print("Pressure: %0.3f hPa" % bme680.pressure)
1918
print("Altitude = %0.2f meters" % bme680.altitude)
20-
19+
2120
time.sleep(1)

0 commit comments

Comments
 (0)