From 296ec09c162ff7662b49f1fdc3e07be4a97ff038 Mon Sep 17 00:00:00 2001 From: flo269 Date: Tue, 18 Jul 2017 12:20:41 +0200 Subject: [PATCH] punctuation --- modules/base_plugins/gpio_actor/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/base_plugins/gpio_actor/__init__.py b/modules/base_plugins/gpio_actor/__init__.py index e346ef9..36ccb40 100644 --- a/modules/base_plugins/gpio_actor/__init__.py +++ b/modules/base_plugins/gpio_actor/__init__.py @@ -18,7 +18,7 @@ except Exception as e: @cbpi.actor class GPIOSimple(ActorBase): - gpio = Property.Select("GPIO", options=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27], description="GPIO to which the actor is connected") + gpio = Property.Select("GPIO", options=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27], description="GPIO to which the actor is connected.") def init(self): GPIO.setup(int(self.gpio), GPIO.OUT) @@ -35,7 +35,7 @@ class GPIOSimple(ActorBase): @cbpi.actor class GPIOPWM(ActorBase): - gpio = Property.Select("GPIO", options=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27], description="GPIO to which the actor is connected") + gpio = Property.Select("GPIO", options=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27], description="GPIO to which the actor is connected.") duty_cylce = Property.Number("Duty Cycle", configurable=True) p = None