Skip to content

Commit

Permalink
Vast: Updating a function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
kristopolous committed Dec 12, 2024
1 parent 1bbbbcc commit 7face5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sky/clouds/vast.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ def get_accelerators_from_instance_type(
def get_zone_shell_cmd(cls) -> Optional[str]:
return None

# TODO: Function signature is different from the fluffy cloud
def make_deploy_resources_variables(
self,
resources: 'resources_lib.Resources',
cluster_name: resources_utils.ClusterName,
region: 'clouds.Region',
zones: Optional[List['clouds.Zone']],
num_nodes: int,
dryrun: bool = False) -> Dict[str, Optional[str]]:
del zones, dryrun, cluster_name # unused
del zones, dryrun, cluster_name, num_nodes # unused

r = resources
acc_dict = self.get_accelerators_from_instance_type(r.instance_type)
Expand Down

0 comments on commit 7face5e

Please sign in to comment.