We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ac8675 commit 972c6d9Copy full SHA for 972c6d9
functions/technologies/libs/queries.py
@@ -48,7 +48,7 @@ def list_data(params):
48
data = set()
49
for doc in documents:
50
item = doc.to_dict()
51
- data.append(item['technology'])
+ data.add(item['technology'])
52
53
return Result(result=list(data))
54
0 commit comments