Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions SoftLayer/API.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def iter_call(self, service, method, *args, **kwargs):
results = transports.SoftLayerListResult(results, len(results))
else:
yield results
raise StopIteration
return

for item in results:
yield item
Expand All @@ -313,8 +313,6 @@ def iter_call(self, service, method, *args, **kwargs):

offset += limit

raise StopIteration

def __repr__(self):
return "Client(transport=%r, auth=%r)" % (self.transport, self.auth)

Expand Down