소스 검색

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"