Skip to content

Commit e4c361d

Browse files
committed
fixes wrong types for Processor inventory
1 parent ad61e29 commit e4c361d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cr_module/classes/inventory.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,13 +277,13 @@ class Processor(InventoryItem):
277277
"manufacturer": str,
278278
"max_speed": int,
279279
"model": str,
280-
"name": int,
281-
"operation_status": int,
280+
"name": str,
281+
"operation_status": str,
282282
"serial": str,
283283
"socket": int,
284284
"system_ids": list,
285285
"threads": int,
286-
"type": int
286+
"type": str
287287
}
288288

289289

0 commit comments

Comments
 (0)