X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=tests%2Futils%2Fpython%2Fcli_params_to_string.py;h=90d61ffdc5e75dde47a63de4fb711324df40ae02;hp=f07755c657ad6e86e22eeaf2257ebbf2ce79937d;hb=f5567ea88d172767b34373bc6e402da8bfd85ef8;hpb=419d8c49bd978a59b8a0619d83cb6ba26b18f970 diff --git a/tests/utils/python/cli_params_to_string.py b/tests/utils/python/cli_params_to_string.py index f07755c6..90d61ffd 100644 --- a/tests/utils/python/cli_params_to_string.py +++ b/tests/utils/python/cli_params_to_string.py @@ -12,13 +12,13 @@ def to_string(p): # signed integers). if type(p) is bt2._ArrayValueConst: - s = '[{}]'.format(', '.join([to_string(x) for x in p])) + s = "[{}]".format(", ".join([to_string(x) for x in p])) elif type(p) is bt2._MapValueConst: - s = '{{{}}}'.format( - ', '.join([k + '=' + to_string(p[k]) for k in sorted(p.keys())]) + s = "{{{}}}".format( + ", ".join([k + "=" + to_string(p[k]) for k in sorted(p.keys())]) ) elif type(p) is bt2._UnsignedIntegerValueConst: - s = str(p) + 'u' + s = str(p) + "u" elif ( type(p) in ( @@ -32,6 +32,6 @@ def to_string(p): s = str(p) else: - raise TypeError('Unexpected type', type(p)) + raise TypeError("Unexpected type", type(p)) return s