Skip to content

Commit

Permalink
Strip spacing out of database IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinHeist committed Oct 8, 2023
1 parent d2e5ecd commit 2038bcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_issue_blueprint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# Blueprint Validation Results
Validation has __failed__. See the [workflow summary](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) for details.
After correcting the Blueprint, new test will be run automatically.
After correcting the Blueprint, new tests will be run automatically.
# Add labels for pass/failure
- name: Add Passing Label
Expand Down
1 change: 1 addition & 0 deletions src/build/parse_submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ def parse_database_ids(ids: str) -> dict:
for id_substr in ids.split(','):
try:
id_type, id_ = id_substr.split(':')
id_ = str(id_).strip()
except ValueError as exc:
print(f'Invalid database IDs {exc}')
continue
Expand Down

0 comments on commit 2038bcf

Please sign in to comment.