Skip to content

Commit 511d981

Browse files
authored
fix: pass pull_request_number as keyword arg in empty_upload
1 parent 152ecf8 commit 511d981

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

codecov_cli/commands/empty_upload.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ def empty_upload(
5757

5858
logger.debug("Attempting to Create Commit before doing an empty upload.")
5959
create_commit_logic(
60-
commit_sha,
61-
parent_sha,
62-
pull_request_number,
63-
branch,
64-
slug,
65-
token,
66-
git_service,
67-
enterprise_url,
68-
fail_on_error,
69-
args,
60+
commit_sha=commit_sha,
61+
parent_sha=parent_sha,
62+
pr=pull_request_number,
63+
branch=branch,
64+
slug=slug,
65+
token=token,
66+
service=git_service,
67+
enterprise_url=enterprise_url,
68+
fail_on_error=fail_on_error,
69+
args=args,
7070
)
7171

7272
logger.debug(

0 commit comments

Comments
 (0)