Skip to content

Commit

Permalink
Fixed CI has an error, update file format
Browse files Browse the repository at this point in the history
  • Loading branch information
qinwang-murphy committed Aug 28, 2023
1 parent 978eff4 commit 5ffb838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion delfin/drivers/dell_emc/vmax/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def get_storage_capacity(self, storage_id):
raw_capacity = int(total_raw * units.Gi)
subscribed_capacity = int(subscribed_cap * units.Ti)

return total_capacity, used_capacity, free_capacity,\
return total_capacity, used_capacity, free_capacity, \
raw_capacity, subscribed_capacity

except Exception:
Expand Down
2 changes: 1 addition & 1 deletion delfin/drivers/dell_emc/vmax/vmax.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_storage(self, context):
display_name = array_details['display_name']

# Get Storage details for capacity info
total_capacity, used_capacity, free_capacity,\
total_capacity, used_capacity, free_capacity, \
raw_capacity, subscribed_capacity = \
self.client.get_storage_capacity(storage_id)

Expand Down

0 comments on commit 5ffb838

Please sign in to comment.