From 8e42e44c12b8c7ec540a0d0a3af8a3c86aa5949c Mon Sep 17 00:00:00 2001 From: Matt Sokoloff Date: Mon, 1 Mar 2021 06:24:57 -0500 Subject: [PATCH 1/2] cleanup --- tests/integration/test_client_errors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_client_errors.py b/tests/integration/test_client_errors.py index 533743a34..319c86c9a 100644 --- a/tests/integration/test_client_errors.py +++ b/tests/integration/test_client_errors.py @@ -3,7 +3,7 @@ import time import pytest -from labelbox import Project, Dataset, User, LabelingFrontend +from labelbox import Project, Dataset, User import labelbox.client import labelbox.exceptions @@ -129,7 +129,7 @@ def get(arg): assert elapsed < 60, "Didn't finish fast enough" assert labelbox.exceptions.ApiLimitError in {type(r) for r in results} - del limited # Sleep at the end of this test to allow other tests to execute. - #time.sleep(60) + time.sleep(60) + From a1dc5def8b1f6999ceb49917d66e10a5365808bb Mon Sep 17 00:00:00 2001 From: Matt Sokoloff Date: Mon, 1 Mar 2021 06:32:35 -0500 Subject: [PATCH 2/2] yapf --- tests/integration/test_client_errors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/test_client_errors.py b/tests/integration/test_client_errors.py index 319c86c9a..5f16b0f9d 100644 --- a/tests/integration/test_client_errors.py +++ b/tests/integration/test_client_errors.py @@ -132,4 +132,3 @@ def get(arg): # Sleep at the end of this test to allow other tests to execute. time.sleep(60) -