@@ -135,7 +135,7 @@ def get_subnets_in_acl(self, access_id):
135135
136136 def order_block_volume (self , storage_type , location , size , os_type ,
137137 iops = None , tier_level = None , snapshot_size = None ,
138- service_offering = " storage_as_a_service" ,
138+ service_offering = ' storage_as_a_service' ,
139139 hourly_billing_flag = False ):
140140 """Places an order for a block volume.
141141
@@ -154,12 +154,12 @@ def order_block_volume(self, storage_type, location, size, os_type,
154154 """
155155 order = storage_utils .prepare_volume_order_object (
156156 self , storage_type , location , size , iops , tier_level ,
157- snapshot_size , service_offering , " block" , hourly_billing_flag
157+ snapshot_size , service_offering , ' block' , hourly_billing_flag
158158 )
159159
160160 order ['osFormatType' ] = {'keyName' : os_type }
161161
162- return self .client .call (" Product_Order" , " placeOrder" , order )
162+ return self .client .call (' Product_Order' , ' placeOrder' , order )
163163
164164 def cancel_block_volume (self , volume_id , reason = 'No longer needed' , immediate = False ):
165165 """Cancels the given block storage volume.
0 commit comments