Update gptparser.py
updated field ordering
This commit is contained in:
@@ -19,15 +19,15 @@ GptIdentifier = namedtuple('GptIdentifier', ['id', 'name'])
|
|||||||
|
|
||||||
# Description of the fields supported by GPT markdown files.
|
# Description of the fields supported by GPT markdown files.
|
||||||
SUPPORTED_FIELDS = {
|
SUPPORTED_FIELDS = {
|
||||||
'url': GptFieldInfo(0, 'URL'),
|
'url': GptFieldInfo(10, 'URL'),
|
||||||
'title': GptFieldInfo(1, 'Title'),
|
'title': GptFieldInfo(20, 'Title'),
|
||||||
'description': GptFieldInfo(2, 'Description'),
|
'description': GptFieldInfo(30, 'Description'),
|
||||||
'logo': GptFieldInfo(3, 'Logo'),
|
'logo': GptFieldInfo(40, 'Logo'),
|
||||||
'instructions': GptFieldInfo(4, 'Instructions'),
|
'verif_status': GptFieldInfo(50, 'Verification Status'),
|
||||||
'actions': GptFieldInfo(5, 'Actions'),
|
'instructions': GptFieldInfo(60, 'Instructions'),
|
||||||
'verif_status': GptFieldInfo(6, 'Verification Status'),
|
'actions': GptFieldInfo(70, 'Actions'),
|
||||||
'kb_files_list': GptFieldInfo(6, 'KB Files List'),
|
'kb_files_list': GptFieldInfo(80, 'KB Files List'),
|
||||||
'extras': GptFieldInfo(7, 'Extras')
|
'extras': GptFieldInfo(90, 'Extras')
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
Dictionary of the fields supported by GPT markdown files:
|
Dictionary of the fields supported by GPT markdown files:
|
||||||
|
|||||||
Reference in New Issue
Block a user