Skip to content

Commit

Permalink
trim space
Browse files Browse the repository at this point in the history
  • Loading branch information
HysunHe committed Jan 3, 2025
1 parent c8b6b77 commit 33089ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/clouds/oci.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def make_deploy_resources_variables(
# custom image's ocid provided in the --image-id parameter.
# - ocid1.image...aaa:oraclelinux (os type is oraclelinux)
# - ocid1.image...aaa (OS not provided)
image_id, os_type = image_id.split(':')
image_id, os_type = image_id.replace(' ', '').split(':')

cpus = resources.cpus
instance_type_arr = resources.instance_type.split(
Expand Down

0 comments on commit 33089ef

Please sign in to comment.