Skip to content

Commit 99e455e

Browse files
emilymyeYichi Zhang
andauthored
[release-2.36.0][BEAM-13459] Fix sdk_container_builder too many values to unpack error (#16422)
Co-authored-by: Yichi Zhang <zyichi@google.com>
1 parent f62cabf commit 99e455e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdks/python/apache_beam/runners/portability/sdk_container_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def _prepare_dependencies(self):
9797
resources = Stager.extract_staging_tuple_iter(artifacts)
9898
# make a copy of the staged artifacts into the temp source folder.
9999
file_names = []
100-
for path, name in resources:
100+
for path, name, _ in resources:
101101
shutil.copyfile(path, os.path.join(self._temp_src_dir, name))
102102
file_names.append(name)
103103
with open(os.path.join(self._temp_src_dir, 'Dockerfile'), 'w') as file:

0 commit comments

Comments
 (0)