Skip to content

Commit 954ac57

Browse files
committed
Made _SGP30_FEATURESETS a tuple
1 parent 49d5a9e commit 954ac57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_sgp30.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# pylint: disable=bad-whitespace
5353
_SGP30_DEFAULT_I2C_ADDR = const(0x58)
54-
_SGP30_FEATURESETS = [const(0x0020), const(0x0022)]
54+
_SGP30_FEATURESETS = (0x0020, 0x0022)
5555

5656
_SGP30_CRC8_POLYNOMIAL = const(0x31)
5757
_SGP30_CRC8_INIT = const(0xFF)

0 commit comments

Comments
 (0)