Skip to content

Commit 52c5654

Browse files
author
richard gilmore
committed
ruff formatting
1 parent f6a8cdc commit 52c5654

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

package.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ def commands_step(path, commands):
840840
prefix=prefix,
841841
poetry_export_extra_args=poetry_export_extra_args,
842842
required=True,
843-
tmp_dir=claim.get("poetry_tmp_dir")
843+
tmp_dir=claim.get("poetry_tmp_dir"),
844844
)
845845

846846
if npm_requirements and runtime.startswith("nodejs"):
@@ -911,13 +911,7 @@ def execute(self, build_plan, zip_stream, query):
911911
# XXX: timestamp=0 - what actually do with it?
912912
zs.write_dirs(rd, prefix=prefix, timestamp=0)
913913
elif cmd == "poetry":
914-
(
915-
runtime,
916-
path,
917-
poetry_export_extra_args,
918-
prefix,
919-
tmp_dir
920-
) = action[1:]
914+
(runtime, path, poetry_export_extra_args, prefix, tmp_dir) = action[1:]
921915
log.info("poetry_export_extra_args: %s", poetry_export_extra_args)
922916
with install_poetry_dependencies(
923917
query, path, poetry_export_extra_args, tmp_dir

0 commit comments

Comments
 (0)