Skip to content

Commit 3042dc8

Browse files
committed
change pricePerHour to price_per_hour
1 parent 541fdfe commit 3042dc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datacrunch/instance_types/instance_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def get(self) -> List[InstanceType]:
161161
instance_type_objects = list(map(lambda instance_type: InstanceType(
162162
id=instance_type['id'],
163163
instance_type=instance_type['instance_type'],
164-
price_per_hour=instance_type['pricePerHour'],
164+
price_per_hour=instance_type['price_per_hour'],
165165
description=instance_type['description'],
166166
cpu=instance_type['cpu'],
167167
gpu=instance_type['gpu'],

0 commit comments

Comments
 (0)