1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-06-21 15:55:58 +01:00

utils/serializer: add basestring to POD_TYPES

Was replaced with str during Python 3 porting.
This commit is contained in:
Sergei Trofimov
2018-06-12 13:28:51 +01:00
committed by setrofim
parent 657a10c09d
commit c4838b4021

@ -72,7 +72,7 @@ POD_TYPES = [
tuple, tuple,
dict, dict,
set, set,
str, basestring,
str, str,
int, int,
float, float,