Skip to content

Commit 20beb14

Browse files
committed
Fixing private repo url lambda.
1 parent a7979ed commit 20beb14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metamist_infrastructure/driver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def _private_repo_url(self):
487487
self.infrastructure.gcp_python_registry.project,
488488
self.infrastructure.gcp_python_registry.name,
489489
).apply(
490-
lambda location, project, name: f'https://{location}-python.pkg.dev/{project}/{name}/simple/'
490+
lambda args: f'https://{args[0]}-python.pkg.dev/{args[1]}/{args[2]}/simple/'
491491
)
492492

493493
def _etl_function(

0 commit comments

Comments
 (0)