Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hvidy committed Feb 15, 2024
1 parent a92f75d commit 33611ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/parse_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def parse_issue(issue):
model_code_notes = data["-> model code/inputs notes"].strip()

if model_code_notes == "_No response_":
model_code_notes == ""
model_code_notes = ""
error_log += "**Model code/inputs notes**\n"
error_log += "Warning: No notes provided.\n"

Expand Down Expand Up @@ -219,7 +219,7 @@ def parse_issue(issue):
model_output_notes = data["-> model output data notes"].strip()

if model_output_notes == "_No response_":
model_output_notes == ""
model_output_notes = ""
error_log += "**Model code/inputs notes**\n"
error_log += "Warning: No notes provided.\n"

Expand Down

0 comments on commit 33611ef

Please sign in to comment.