Skip to content

Commit 568e552

Browse files
committed
Fixed to allow boot
1 parent ee113a1 commit 568e552

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/neopixel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ neopixel:
6464
pub:
6565
- log:
6666
description: "Send messages to logger."
67-
emotion_analysis:
68-
enable: false
67+
emotion_analysis:
68+
enable: false

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def main():
112112

113113

114114
neopx = NeoPx(Config.get('neopixel','count'))
115-
if Config.get('neopixel', 'emotion_analysis', 'enabled'):
115+
if Config.get('neopixel', 'emotion_analysis')['enable'] is True:
116116
from modules.emotion_analysis import EmotionAnalysis
117117
emotion_analysis = EmotionAnalysis()
118118

0 commit comments

Comments
 (0)