We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d066e69 commit 13f78c5Copy full SHA for 13f78c5
functions/technologies/libs/queries.py
@@ -50,11 +50,12 @@ def list_data(params):
50
item = doc.to_dict()
51
data.add(item['technology'])
52
53
- return Result(result=list(data).sort())
+ data = list(data)
54
+ data.sort()
55
56
else:
57
data = []
58
for doc in documents:
59
data.append(Presenters.technology(doc.to_dict()))
60
- return Result(result=data)
61
+ return Result(result=data)
0 commit comments