Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed Nov 28, 2022
1 parent 393a38b commit 15aa101
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sky/backends/cloud_vm_ray_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2975,7 +2975,8 @@ def _execute_file_mounts(self, handle: ResourceHandle,
sync = storage.make_sync_file_command(source=src,
destination=wrapped_dst)
# It is a file so make sure *its parent dir* exists.
mkdir_for_wrapped_dst = (f'mkdir -p {os.path.dirname(wrapped_dst)}')
mkdir_for_wrapped_dst = (
f'mkdir -p {os.path.dirname(wrapped_dst)}')

download_target_commands = [
# Ensure sync can write to wrapped_dst (e.g., '/data/').
Expand Down

0 comments on commit 15aa101

Please sign in to comment.