diff --git a/tests/rest/client/test_rooms.py b/tests/rest/client/test_rooms.py
index b11a73e92b..d2f2ded487 100644
--- a/tests/rest/client/test_rooms.py
+++ b/tests/rest/client/test_rooms.py
@@ -1222,9 +1222,9 @@ class RoomJoinTestCase(RoomBase):
"""
# Register a dummy callback. Make it allow all room joins for now.
- return_value: Union[
- Literal["NOT_SPAM"], Tuple[Codes, dict], Codes
- ] = synapse.module_api.NOT_SPAM
+ return_value: Union[Literal["NOT_SPAM"], Tuple[Codes, dict], Codes] = (
+ synapse.module_api.NOT_SPAM
+ )
async def user_may_join_room(
userid: str,
@@ -1664,9 +1664,9 @@ class RoomMessagesTestCase(RoomBase):
expected_fields: dict,
) -> None:
class SpamCheck:
- mock_return_value: Union[
- str, bool, Codes, Tuple[Codes, JsonDict], bool
- ] = "NOT_SPAM"
+ mock_return_value: Union[str, bool, Codes, Tuple[Codes, JsonDict], bool] = (
+ "NOT_SPAM"
+ )
mock_content: Optional[JsonDict] = None
async def check_event_for_spam(
|