We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b587d1d commit aad1d0bCopy full SHA for aad1d0b
functions/technologies/libs/presenters.py
@@ -1,11 +1,10 @@
1
-
2
class Presenters:
3
@staticmethod
4
def technology(item):
5
return {
6
- 'similar_technologies': item['similar_technologies'],
7
- 'description': item['description'],
8
- 'origins': item['origins'],
9
'technology': item['technology'],
10
- 'category': item['category']
+ 'category': item['category'],
+ 'description': item['description'],
+ 'icon': item['icon'],
+ 'origins': item['origins']
11
}
0 commit comments