From bb3d55ca4d3a3bfcfda590ba9c980be359267248 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Thu, 28 Oct 2021 19:45:48 +0800 Subject: [PATCH] [skip ci] Standardize code style (#10804) Signed-off-by: Binbin Lv --- tests/python_client/testcases/test_flush.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_client/testcases/test_flush.py b/tests/python_client/testcases/test_flush.py index b38096b1f4..65df6d7207 100644 --- a/tests/python_client/testcases/test_flush.py +++ b/tests/python_client/testcases/test_flush.py @@ -193,7 +193,7 @@ class TestFlushBase: connect.flush([id_collection]) timeout = 20 start_time = time.time() - while (time.time() - start_time < timeout): + while time.time() - start_time < timeout: time.sleep(1) res = connect.get_collection_stats(id_collection) if res["row_count"] == default_nb: