From e214432d56efc0b3fae6ac04be5be136a3198b73 Mon Sep 17 00:00:00 2001 From: Josh Gadeken Date: Thu, 11 Oct 2018 20:28:43 -0600 Subject: [PATCH] Fix comment and keyword typos. Corrections for a few typos I noticed while working on Issue #1. --- adafruit_sgp30.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adafruit_sgp30.py b/adafruit_sgp30.py index 8441276..fd37547 100755 --- a/adafruit_sgp30.py +++ b/adafruit_sgp30.py @@ -69,7 +69,7 @@ def __init__(self, i2c, address=_SGP30_DEFAULT_I2C_ADDR): # get unique serial, its 48 bits so we store in an array self.serial = self._i2c_read_words_from_cmd([0x36, 0x82], 0.01, 3) - # get featuerset + # get featureset featureset = self._i2c_read_words_from_cmd([0x20, 0x2f], 0.01, 1) if featureset[0] != _SGP30_FEATURESET: raise RuntimeError('SGP30 Not detected') diff --git a/setup.py b/setup.py index db8cf54..f3d5003 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ ], # What does your project relate to? - keywords='adafruit sensiron sgp30 gas sensor ec02 tvod i2c hardware micropython circuitpython', + keywords='adafruit sensiron sgp30 gas sensor eco2 tvoc i2c hardware micropython circuitpython', # You can just specify the packages manually here if your project is # simple. Or you can use find_packages().