FIX: get_measurement should return a dict not a set

This commit is contained in:
Fabio Manganiello 2019-08-01 23:17:04 +02:00
parent 72d1b3cd2a
commit 675f899b5f
1 changed files with 2 additions and 3 deletions

View File

@ -9,8 +9,7 @@ class SensorEnvirophatBackend(SensorBackend):
Requires:
* ``adafruit-mcp3008`` (``pip install adafruit-mcp3008``)
* The :mod:`platypush.plugins.gpio.sensor.mcp3008` plugin configured
* ``envirophat`` (``pip install envirophat``)
"""
def __init__(self, temperature=True, pressure=True, altitude=True, luminosity=True,
@ -42,7 +41,7 @@ class SensorEnvirophatBackend(SensorBackend):
plugin = get_plugin('gpio.sensor.envirophat')
sensors = plugin.get_data(qnh=self.qnh).output
ret = {
sensors[sensor]
sensor: sensors[sensor]
for sensor, enabled in self.enabled_sensors.items()
if enabled and sensor in sensors
}