diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-02-08 16:29:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 16:29:49 -0500 |
commit | 30509a1010f10bc7924146cac57571c4b24914d7 (patch) | |
tree | 27f0185c1241923b423643751fcfb3c5d142f778 /tests/unittest.py | |
parent | Add missing type hints to tests. (#15027) (diff) | |
download | synapse-30509a1010f10bc7924146cac57571c4b24914d7.tar.xz |
Add more missing type hints to tests. (#15028)
Diffstat (limited to '')
-rw-r--r-- | tests/unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittest.py b/tests/unittest.py index fa92dd94eb..68e59a88dc 100644 --- a/tests/unittest.py +++ b/tests/unittest.py @@ -315,7 +315,7 @@ class HomeserverTestCase(TestCase): # This has to be a function and not just a Mock, because # `self.helper.auth_user_id` is temporarily reassigned in some tests - async def get_requester(*args, **kwargs) -> Requester: + async def get_requester(*args: Any, **kwargs: Any) -> Requester: assert self.helper.auth_user_id is not None return create_requester( user_id=UserID.from_string(self.helper.auth_user_id), |