From 7811ed67c9db24c1dfd134e615a49371d21d8436 Mon Sep 17 00:00:00 2001 From: Ben Nuttall Date: Thu, 24 Sep 2015 12:23:09 +0100 Subject: [PATCH] Ensure args are passed to flash() --- gpiozero/output_devices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpiozero/output_devices.py b/gpiozero/output_devices.py index 724fc33..2fe6128 100644 --- a/gpiozero/output_devices.py +++ b/gpiozero/output_devices.py @@ -142,7 +142,7 @@ class LED(DigitalOutputDevice): off_time: 1 Number of seconds off """ - super(LED, self).blink() + super(LED, self).blink(on_time, off_time) def toggle(self): """