Dannyar608 commited on
Commit
26b4bb0
·
verified ·
1 Parent(s): 8d71790

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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
+