From f2d077354ce7a3e34c138f6e5dc090ec334782d0 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Thu, 16 Aug 2018 01:26:10 +0200 Subject: [PATCH] Typo fix --- platypush/plugins/light/hue/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platypush/plugins/light/hue/__init__.py b/platypush/plugins/light/hue/__init__.py index 115cb937f..d99dcd9c5 100644 --- a/platypush/plugins/light/hue/__init__.py +++ b/platypush/plugins/light/hue/__init__.py @@ -414,7 +414,7 @@ class LightHuePlugin(LightPlugin): return self._exec('bri', int(bri), lights=lights, groups=groups) @action - def delta_sat(self, value, lights=[], groups=[]): + def delta_sat(self, delta, lights=[], groups=[]): """ Change lights/groups saturation by a delta [-100, 100] compared to the current state. @@ -455,7 +455,7 @@ class LightHuePlugin(LightPlugin): return self._exec('sat', int(sat), lights=lights, groups=groups) @action - def delta_hue(self, value, lights=[], groups=[]): + def delta_hue(self, delta, lights=[], groups=[]): """ Change lights/groups hue by a delta [-100, 100] compared to the current state.