Skip to content

Commit c11b9b2

Browse files
committed
remove unnecessary variable
1 parent d02fc6c commit c11b9b2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

datacrunch/instances/instances.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ def create(self,
179179

180180
# Wait for instance to enter provisioning state with timeout
181181
interval = min(initial_interval, max_interval)
182-
start = time.monotonic()
183-
deadline = start + max_wait_time
182+
deadline = time.monotonic() + max_wait_time
184183
while True:
185184
instance = self.get_by_id(id)
186185
if instance.status != InstanceStatus.ORDERED:

0 commit comments

Comments
 (0)