Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -194,7 +194,7 @@ class UniversalTranscriptParser:
|
|
194 |
)
|
195 |
|
196 |
for match in course_pattern.finditer(text):
|
197 |
-
grade_level = self.grade_level_map.get(match.group(3), match.group(3)
|
198 |
credits = match.group(10).strip()
|
199 |
|
200 |
course_info = {
|
@@ -704,4 +704,5 @@ with gr.Blocks() as app:
|
|
704 |
)
|
705 |
|
706 |
if __name__ == "__main__":
|
707 |
-
app.launch()
|
|
|
|
194 |
)
|
195 |
|
196 |
for match in course_pattern.finditer(text):
|
197 |
+
grade_level = self.grade_level_map.get(match.group(3), match.group(3))
|
198 |
credits = match.group(10).strip()
|
199 |
|
200 |
course_info = {
|
|
|
704 |
)
|
705 |
|
706 |
if __name__ == "__main__":
|
707 |
+
app.launch()
|
708 |
+
|