1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00

utils/serializer: add OrderedDict to POD_TYPES

Allow OrderedDict to be serialized in the same way as regular dicts by
defining it as a Plain Old Data type.
This commit is contained in:
Sergei Trofimov 2017-09-28 10:46:03 +01:00
parent 1df033fc22
commit 7b1cc6fa4e

View File

@ -75,6 +75,7 @@ POD_TYPES = [
int,
float,
bool,
OrderedDict,
datetime,
regex_type,
none_type,