Skip to content

Commit

Permalink
✨[aihawk_easy_appplier.py] bot uses user updated answers without havi…
Browse files Browse the repository at this point in the history
…ng to restart
  • Loading branch information
sloganking committed Oct 18, 2024
1 parent 59aebe1 commit f9230a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aihawk_easy_applier.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ def _save_questions_to_json(self, question_data: dict) -> None:
data.append(question_data)
with open(output_file, 'w') as f:
json.dump(data, f, indent=4)
self.all_data.append(question_data)
self.all_data = data
logger.debug("Question data saved successfully to JSON")
except Exception:
tb_str = traceback.format_exc()
Expand Down

0 comments on commit f9230a4

Please sign in to comment.