Remove TODO

This commit is contained in:
alstr 2020-08-01 09:25:19 +01:00
parent a8a0286fa4
commit a4c61d3f18

View File

@ -203,9 +203,6 @@ def main():
new_issue_request = requests.post(url=issues_url, headers=issue_headers,
data=json.dumps(new_issue_body))
print(f'Creating issue {i + 1} of {len(new_issues)}')
# TODO Investigate result not being printed on last loop when adding multiple new TODOs
# See https://github.com/alstr/todo-to-issue-action/issues/7#issuecomment-630694673
# Could the log be being truncated?
if new_issue_request.status_code == 201:
print('Issue created')
else: