hylee
commited on
Commit
·
3f72c90
1
Parent(s):
3697fb9
fix
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -129,7 +129,7 @@ class Transcript:
|
|
129 |
def get_word_cloud_dicts(self):
|
130 |
teacher_dict = {}
|
131 |
student_dict = {}
|
132 |
-
for utt in self.utterances
|
133 |
words = (utt.get_clean_text(remove_punct=True)).split(' ')
|
134 |
for word in words:
|
135 |
if utt.role == 'teacher':
|
|
|
129 |
def get_word_cloud_dicts(self):
|
130 |
teacher_dict = {}
|
131 |
student_dict = {}
|
132 |
+
for utt in self.utterances:
|
133 |
words = (utt.get_clean_text(remove_punct=True)).split(' ')
|
134 |
for word in words:
|
135 |
if utt.role == 'teacher':
|