Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daroczig committed Dec 28, 2023
1 parent 7003e19 commit 0d56944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sc_crawler/vendors/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def get_storage(instance_type):
return (0, None)
info = instance_type.get("InstanceStorageInfo")
storage_size = info.get("TotalSizeInGB", 0) * 1024 * 1024
storage_type=info.get("Disks")[0].get("Type").lower()
storage_type = info.get("Disks")[0].get("Type").lower()
return (storage_size, storage_type)


Expand Down

0 comments on commit 0d56944

Please sign in to comment.