remove spurious uses of variables

This commit is contained in:
stupidcomputer 2024-10-09 06:34:52 -05:00
parent 13475a8531
commit 67314c71cf
1 changed files with 14 additions and 18 deletions

View File

@ -50,23 +50,21 @@ def gitea_handle_repo_action():
if not repo_action == "created": if not repo_action == "created":
return '' return ''
github_created_repo_result = github.create_repo( new_repo = github.create_repo(
repo_name, repo_description repo_name, repo_description
) )
new_repo_url = new_repo.json()["html_url"]
new_github_repo_url = github_created_repo_result.json()["html_url"] gitea.add_push_target(
repo_owner, repo_name, new_repo_url, repo_owner,
gitea_push_target_result = gitea.add_push_target(
repo_owner, repo_name, new_github_repo_url, repo_owner,
app.config["GITHUB_ACCESS_TOKEN"] app.config["GITHUB_ACCESS_TOKEN"]
) )
gitea.force_push_target(
gitea_force_target_push = gitea.force_push_target(
repo_owner, repo_owner,
repo_name repo_name
) )
github_create_webhook_result = github.create_webhook( github.create_webhook(
repo_owner, repo_owner,
repo_name, repo_name,
"https://{}/bridge/endpoints/github/issue".format( "https://{}/bridge/endpoints/github/issue".format(
@ -74,8 +72,7 @@ def gitea_handle_repo_action():
), ),
["issues", "issue_comment"] ["issues", "issue_comment"]
) )
gitea.create_webhook(
gitea_create_webhook_result = gitea.create_webhook(
repo_owner, repo_owner,
repo_name, repo_name,
"https://{}/bridge/endpoints/gitea/issue".format( "https://{}/bridge/endpoints/gitea/issue".format(
@ -164,14 +161,13 @@ def gitea_handle_issue_action():
issue_footer issue_footer
]) ])
github_create_issue_result = github.create_issue( new_issue = github.create_issue(
repo_owner, repo_owner,
repo_name, repo_name,
event_title, event_title,
issue_body, issue_body,
) )
returned_data = new_issue.json()
returned_data = github_create_issue_result.json()
issue_comment_body = """ issue_comment_body = """
*This issue is being mirrored on Github [here]({}).* *This issue is being mirrored on Github [here]({}).*
@ -185,7 +181,7 @@ def gitea_handle_issue_action():
generate_sentinel(returned_data["url"]) generate_sentinel(returned_data["url"])
) )
gitea_issue_comment_result = gitea.leave_comment_on_issue_by_number( gitea.leave_comment_on_issue_by_number(
repo_owner, repo_owner,
repo_name, repo_name,
issue_number, issue_number,
@ -218,7 +214,7 @@ def gitea_handle_issue_action():
comment_footer, comment_footer,
]) ])
github_comment_post_result = github.leave_comment_on_issue_by_number( github.leave_comment_on_issue_by_number(
repo_owner, repo_owner,
repo_name, repo_name,
issue_number, issue_number,
@ -296,7 +292,7 @@ def github_handle_issue_action():
issue_footer issue_footer
]) ])
gitea_create_issue_result = gitea.create_issue( gitea.create_issue(
repo_owner, repo_owner,
repo_name, repo_name,
event_title, event_title,
@ -329,7 +325,7 @@ def github_handle_issue_action():
]) ])
gitea_comment_post_result = gitea.leave_comment_on_issue_by_number( gitea.leave_comment_on_issue_by_number(
repo_owner, repo_owner,
repo_name, repo_name,
issue_number, issue_number,
@ -337,7 +333,7 @@ def github_handle_issue_action():
) )
elif event_type == "closed": elif event_type == "closed":
gitea_close_issue_result = gitea.close_issue_by_number( gitea.close_issue_by_number(
repo_owner, repo_owner,
repo_name, repo_name,
issue_number, issue_number,