From f9ea7661d22d59f3a8706301c3fed03b00dc3a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=B5=E3=81=81?= Date: Tue, 6 Feb 2024 14:13:34 +0900 Subject: [PATCH] fix format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ふぁ --- test/python/test_serialize.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/python/test_serialize.py b/test/python/test_serialize.py index 1df2c38..8dbc7cc 100644 --- a/test/python/test_serialize.py +++ b/test/python/test_serialize.py @@ -1,15 +1,15 @@ -import json -import os -import logging import base64 -import openapi_client as pt -from pathlib import Path -import time -import glob -import aenum import concurrent.futures +import glob +import json +import logging +import os +import time import traceback +from pathlib import Path +import aenum +import openapi_client as pt logging.basicConfig(level=logging.DEBUG, format="%(asctime)s %(levelname)s %(message)s") logger = logging.getLogger("test_serialize") @@ -96,7 +96,7 @@ def match_rate(a, b, key=""): return sum(data) / len(a) if a == b: return 1 - return match_rate_zero(a, b, key=key) + return match_rate_zero(key) def save_cache(data):