Skip to content

Commit 18085e2

Browse files
author
richard gilmore
committed
style: reformat with ruff
1 parent c29fe0a commit 18085e2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

package.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -948,14 +948,18 @@ def execute(self, build_plan, zip_stream, query):
948948
# XXX: timestamp=0 - what actually do with it?
949949
zs.write_dirs(rd, prefix=prefix, timestamp=0)
950950
elif cmd == "poetry":
951-
(runtime, path, poetry_export_extra_args, prefix, tmp_dir) = action[1:]
951+
(runtime, path, poetry_export_extra_args, prefix, tmp_dir) = action[
952+
1:
953+
]
952954
log.info("poetry_export_extra_args: %s", poetry_export_extra_args)
953955
with install_poetry_dependencies(
954956
query, path, poetry_export_extra_args, tmp_dir
955957
) as rd:
956958
if rd:
957959
if pf:
958-
self._zip_write_with_filter(zs, pf, rd, prefix, timestamp=0)
960+
self._zip_write_with_filter(
961+
zs, pf, rd, prefix, timestamp=0
962+
)
959963
else:
960964
# XXX: timestamp=0 - what actually do with it?
961965
zs.write_dirs(rd, prefix=prefix, timestamp=0)

0 commit comments

Comments
 (0)