File tree Expand file tree Collapse file tree 3 files changed +19
-19
lines changed Expand file tree Collapse file tree 3 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 99"""
1010
1111
12- class Sentiment (Enum ):
13- UNKNOWN = ""
14- NEGATIVE = "negative"
15- NEUTRAL = "neutral"
16- POSITIVE = "positive"
12+ class Sentiment (str , Enum ):
13+ UNKNOWN : str = ""
14+ NEGATIVE : str = "negative"
15+ NEUTRAL : str = "neutral"
16+ POSITIVE : str = "positive"
Original file line number Diff line number Diff line change 99"""
1010
1111
12- class LiveTranscriptionEvents (Enum ):
13- Open = "Open"
14- Close = "Close"
15- Transcript = "Results"
16- Metadata = "Metadata"
17- UtteranceEnd = "UtteranceEnd"
18- SpeechStarted = "SpeechStarted"
19- Error = "Error"
20- Warning = "Warning"
12+ class LiveTranscriptionEvents (str , Enum ):
13+ Open : str = "Open"
14+ Close : str = "Close"
15+ Transcript : str = "Results"
16+ Metadata : str = "Metadata"
17+ UtteranceEnd : str = "UtteranceEnd"
18+ SpeechStarted : str = "SpeechStarted"
19+ Error : str = "Error"
20+ Warning : str = "Warning"
Original file line number Diff line number Diff line change 99"""
1010
1111
12- class Sentiment (Enum ):
13- UNKNOWN = ""
14- NEGATIVE = "negative"
15- NEUTRAL = "neutral"
16- POSITIVE = "positive"
12+ class Sentiment (str , Enum ):
13+ UNKNOWN : str = ""
14+ NEGATIVE : str = "negative"
15+ NEUTRAL : str = "neutral"
16+ POSITIVE : str = "positive"
You can’t perform that action at this time.
0 commit comments