diff options
Diffstat (limited to 'decoders/mlx90614')
-rw-r--r-- | decoders/mlx90614/pd.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/decoders/mlx90614/pd.py b/decoders/mlx90614/pd.py index aa63458..fec3334 100644 --- a/decoders/mlx90614/pd.py +++ b/decoders/mlx90614/pd.py @@ -29,10 +29,10 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['i2c'] outputs = ['mlx90614'] - annotations = [ - ['celsius', 'Temperature in degrees Celsius'], - ['kelvin', 'Temperature in Kelvin'], - ] + annotations = ( + ('celsius', 'Temperature in degrees Celsius'), + ('kelvin', 'Temperature in Kelvin'), + ) def __init__(self, **kwargs): self.state = 'IGNORE START REPEAT' |