Skip to content

Commit 452e7e3

Browse files
author
Hannah DeFazio
committed
black reformatting
1 parent db40cf9 commit 452e7e3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

ros/angel_system_nodes/angel_system_nodes/audio/emotion/gpt_emotion_detector.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
import os
66
import rclpy
77

8-
from ros.angel_system_nodes.angel_system_nodes.audio.emotion.base_emotion_detector import BaseEmotionDetector, LABEL_MAPPINGS
8+
from ros.angel_system_nodes.angel_system_nodes.audio.emotion.base_emotion_detector import (
9+
BaseEmotionDetector,
10+
LABEL_MAPPINGS,
11+
)
912

1013
openai.organization = os.getenv("OPENAI_ORG_ID")
1114
openai.api_key = os.getenv("OPENAI_API_KEY")

ros/angel_system_nodes/angel_system_nodes/audio/intent/gpt_intent_detector.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
import os
77
import rclpy
88

9-
from ros.angel_system_nodes.angel_system_nodes.audio.intent.base_intent_detector import BaseIntentDetector, INTENT_LABELS
9+
from ros.angel_system_nodes.angel_system_nodes.audio.intent.base_intent_detector import (
10+
BaseIntentDetector,
11+
INTENT_LABELS,
12+
)
1013

1114
openai.organization = os.getenv("OPENAI_ORG_ID")
1215
openai.api_key = os.getenv("OPENAI_API_KEY")

0 commit comments

Comments
 (0)