diff --git a/lamps/LampGroup.py b/lamps/LampGroup.py index 493636b..b6425ff 100644 --- a/lamps/LampGroup.py +++ b/lamps/LampGroup.py @@ -41,7 +41,7 @@ class LampGroup: self.currentLampPtr -= 1 def toggleRandom(self, sleepTime): - count = random.randint(1,8) + count = random.randint(1,3) random_lamps = random.choices(self.lamps, count) for lamp in random_lamps: lamp.activate()