From 511d9813862237d90d8f8aca7d151cbe32f5f768 Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2026 13:50:46 +0000 Subject: [PATCH] fix: pass pull_request_number as keyword arg in empty_upload --- codecov_cli/commands/empty_upload.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/codecov_cli/commands/empty_upload.py b/codecov_cli/commands/empty_upload.py index 463fd81c5..cb5767255 100644 --- a/codecov_cli/commands/empty_upload.py +++ b/codecov_cli/commands/empty_upload.py @@ -57,16 +57,16 @@ def empty_upload( logger.debug("Attempting to Create Commit before doing an empty upload.") create_commit_logic( - commit_sha, - parent_sha, - pull_request_number, - branch, - slug, - token, - git_service, - enterprise_url, - fail_on_error, - args, + commit_sha=commit_sha, + parent_sha=parent_sha, + pr=pull_request_number, + branch=branch, + slug=slug, + token=token, + service=git_service, + enterprise_url=enterprise_url, + fail_on_error=fail_on_error, + args=args, ) logger.debug(