From 8c656e4c4d0c0d67291c9f3049c36bd81adafe7f Mon Sep 17 00:00:00 2001 From: Ben Nuttall Date: Mon, 1 May 2017 16:18:37 +0100 Subject: [PATCH] Remove kwargs from CompositeOutputDevice init --- gpiozero/boards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpiozero/boards.py b/gpiozero/boards.py index 7294dea..4423fdc 100644 --- a/gpiozero/boards.py +++ b/gpiozero/boards.py @@ -880,7 +880,7 @@ class StatusBoard(CompositeOutputDevice): button=Button(button), lights=LEDBoard( red=red, green=green, _order=('red', 'green'), **kwargs - ), _order=('button', 'lights'), **kwargs) + ), _order=('button', 'lights')) super(StatusBoard, self).__init__(_order=strips.keys(), **strips)