Skip to content

Commit

Permalink
Update ecosystem/utils/submission_parser.py
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Arellano <[email protected]>
  • Loading branch information
frankharkins and Eric-Arellano authored May 1, 2024
1 parent 9935d0a commit 49d5593
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 @@ -79,6 +79,6 @@ def parse_submission_issue(body_of_issue: str) -> Repository:
if args["labels"] is None:
args["labels"] = []
else:
args["labels"] = [l.strip() for l in args["labels"].split(",")]
args["labels"] = [x.strip() for x in args["labels"].split(",")]

return Repository(**args)

0 comments on commit 49d5593

Please sign in to comment.