diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2022-03-02 17:34:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 16:34:14 +0000 |
commit | 2ffaf30803f93273a4d8a65c9e6c3110c8433488 (patch) | |
tree | 88e768c62d855d62a6e010959f654c096aa6cbb4 /tests/rest/client/test_relations.py | |
parent | Enable complexity checking in complexity checking docs example (#11998) (diff) | |
download | synapse-2ffaf30803f93273a4d8a65c9e6c3110c8433488.tar.xz |
Add type hints to `tests/rest/client` (#12108)
* Add type hints to `tests/rest/client` * newsfile * fix imports * add `test_account.py` * Remove one type hint in `test_report_event.py` * change `on_create_room` to `async` * update new functions in `test_third_party_rules.py` * Add `test_filter.py` * add `test_rooms.py` * change to `assertEquals` to `assertEqual` * lint
Diffstat (limited to 'tests/rest/client/test_relations.py')
-rw-r--r-- | tests/rest/client/test_relations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/test_relations.py b/tests/rest/client/test_relations.py index a087cd7b21..709f851a38 100644 --- a/tests/rest/client/test_relations.py +++ b/tests/rest/client/test_relations.py @@ -15,7 +15,7 @@ import itertools import urllib.parse -from typing import Dict, List, Optional, Tuple +from typing import Any, Dict, List, Optional, Tuple from unittest.mock import patch from twisted.test.proto_helpers import MemoryReactor @@ -45,7 +45,7 @@ class BaseRelationsTestCase(unittest.HomeserverTestCase): ] hijack_auth = False - def default_config(self) -> dict: + def default_config(self) -> Dict[str, Any]: # We need to enable msc1849 support for aggregations config = super().default_config() |