Spaces:
Paused
Paused
Commit
·
6088c8f
1
Parent(s):
1e8e58c
indentation adjusted
Browse files
backend/services/report_generator.py
CHANGED
@@ -123,7 +123,7 @@ def generate_llm_interview_report(application) -> str:
|
|
123 |
if application.interview_log:
|
124 |
try:
|
125 |
qa_log = json.loads(application.interview_log)
|
126 |
-
|
127 |
qa_log = []
|
128 |
|
129 |
if qa_log:
|
|
|
123 |
if application.interview_log:
|
124 |
try:
|
125 |
qa_log = json.loads(application.interview_log)
|
126 |
+
except Exception:
|
127 |
qa_log = []
|
128 |
|
129 |
if qa_log:
|