Skip to content

Commit

Permalink
[show-gpus] Change pandas groupby function to str instead of callable (
Browse files Browse the repository at this point in the history
…#2583)

pandas call update
  • Loading branch information
romilbhardwaj authored Sep 19, 2023
1 parent f878d0f commit ec78242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/clouds/service_catalog/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def make_list_from_df(rows):
'InstanceType', 'AcceleratorName', 'AcceleratorCount', 'vCPUs',
'MemoryGiB'
],
dropna=False).aggregate(min).reset_index()
dropna=False).aggregate('min').reset_index()
ret = rows.apply(
lambda row: InstanceTypeInfo(
cloud,
Expand Down

0 comments on commit ec78242

Please sign in to comment.