diff --git a/README.rst b/README.rst index 6b64011..f49693f 100644 --- a/README.rst +++ b/README.rst @@ -58,11 +58,11 @@ the CCS811 object Reading Sensor -------------- -To read the gas sensor and temperature simply read the attributes: +To read the gas sensor simply read the attributes: .. code:: python - print("CO2: ", ccs.eco2, " TVOC:", ccs.tvoc, " temp:", ccs.temperature) + print("CO2: ", ccs.eco2, " TVOC:", ccs.tvoc) Contributing ============ diff --git a/setup.py b/setup.py index 6b1c269..8c0cf6c 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ ], # What does your project relate to? - keywords='adafruit air quality voc eco2 temperature breakout hardware micropython circuitpython', + keywords='adafruit air quality voc eco2 breakout hardware micropython circuitpython', # You can just specify the packages manually here if your project is # simple. Or you can use find_packages().