浏览代码

Remove redudant () (#3829)

Matheus Rocha Vieira 7 年之前
父节点
当前提交
25b87fabb1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      toolset/benchmark/test_types/verifications.py

+ 1 - 1
toolset/benchmark/test_types/verifications.py

@@ -104,7 +104,7 @@ def verify_helloworld_object(json_object, url):
     else:
         json_len = len(json_object)
         if json_len > 1:
-            additional = (', ').join(
+            additional = ', '.join(
                 [k for k in json_object.keys() if k != 'message'])
             problems.append(
                 ('warn', "Too many JSON key/value pairs, consider removing: %s"