From 916be8fca680be21196db65cc1f9e9e246ed1b4a Mon Sep 17 00:00:00 2001 From: zyr17 Date: Thu, 31 Aug 2023 00:41:39 +0800 Subject: [PATCH] fix: wrong import --- tests/server/test_others.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/server/test_others.py b/tests/server/test_others.py index a8e920df..c2ae2e05 100644 --- a/tests/server/test_others.py +++ b/tests/server/test_others.py @@ -254,8 +254,7 @@ def test_id_wont_duplicate(): area = ObjectPositionType.INVALID, id = -1, ) - import tqdm - for _ in tqdm.tqdm(range(100000)): + for _ in range(100000): o = ObjectBase( position = position, )