From 1bd4c9d5bbe89936729cc98192ef87f681b85947 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 18 Jun 2026 17:15:41 -0500 Subject: [PATCH] Refine --- tests/unittest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/unittest.py b/tests/unittest.py index 953538f8ef..b494de691e 100644 --- a/tests/unittest.py +++ b/tests/unittest.py @@ -96,8 +96,6 @@ setup_logging() logger = logging.getLogger(__name__) -T = TypeVar("T") - TV = TypeVar("TV") _ExcType = TypeVar("_ExcType", bound=BaseException, covariant=True) @@ -498,6 +496,9 @@ class HomeserverTestCase(TestCase): Args: awaitable: The thing to wait for timeout: The maximum amount of real time we should before giving up + + Returns: + Deferred (wrapping the awaitable that was passed in) """ start_time = time.time()