Skip to content

Commit 4ceae3a

Browse files
author
Rasmus Lager
committed
comment in PaginatedResultSet
1 parent e89886d commit 4ceae3a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ganapi/helpers.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ def __iter__(self):
2020
return self
2121

2222
def build_entities_list(self, results):
23+
"""
24+
:param results: results response of entities from api
25+
:return: list of constructed entities
26+
"""
2327
list = []
2428
for result in results:
2529
list.append(self.manager.construct_entity(result).set_persisted())

0 commit comments

Comments
 (0)