Skip to content

Commit f854ef9

Browse files
committed
Fix variable name
1 parent 64c17f3 commit f854ef9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ghga_connector/core/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ async def upload_file( # noqa: PLR0913
5959
if is_file_encrypted(file_path):
6060
raise exceptions.FileAlreadyEncryptedError(file_path=file_path)
6161

62-
upload_api_api_url = get_upload_api_url()
63-
if not is_service_healthy(upload_api_api_url):
64-
raise exceptions.ApiNotReachableError(api_url=upload_api_api_url)
62+
upload_api_url = get_upload_api_url()
63+
if not is_service_healthy(upload_api_url):
64+
raise exceptions.ApiNotReachableError(api_url=upload_api_url)
6565

6666
uploader = Uploader(
6767
client=client,

0 commit comments

Comments
 (0)