From 731269ebad6c95e0bee6b7a14dbfc7cd9f07d196 Mon Sep 17 00:00:00 2001 From: lionsoul2014 Date: Thu, 30 Oct 2025 23:19:38 +0800 Subject: [PATCH] .3f format the took --- binding/python/search_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding/python/search_test.py b/binding/python/search_test.py index 3d324a3..c9e75ef 100644 --- a/binding/python/search_test.py +++ b/binding/python/search_test.py @@ -83,7 +83,7 @@ type 'quit' to exit'''.format(db_path, searcher.get_ip_version().name, cache_pol continue took = (time.time() - s_time) * 1000 - print(f"{{region: {region}, ioCount: {searcher.get_io_count()}, took: {took:.2f} ms}}"); + print(f"{{region: {region}, ioCount: {searcher.get_io_count()}, took: {took:.3f} ms}}"); # close the searcher searcher.close()