Skip to content

Commit

Permalink
Reset label empty state behaviour (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankharkins authored Jul 28, 2023
1 parent 0bd29a8 commit 9abeafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecosystem/utils/submission_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def parse_submission_issue(body_of_issue: str) -> Repository:

labels = [l.strip() for l in sections["Tags"].split(",")]
if labels == ["_No response_"]:
labels = None
labels = []

return Repository(
name=name,
Expand Down

0 comments on commit 9abeafc

Please sign in to comment.