Skip to content

Commit

Permalink
Fix random lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MadLittleMods committed Sep 18, 2024
1 parent f04bacc commit 750a804
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
return_value="!something:localhost"
)
self._rlsn._store.add_tag_to_room = AsyncMock(return_value=None) # type: ignore[method-assign]
self._rlsn._store.get_tags_for_room = AsyncMock(return_value={}) # type: ignore[method-assign]
self._rlsn._store.get_tags_for_room = AsyncMock(return_value={})

@override_config({"hs_disabled": True})
def test_maybe_send_server_notice_disabled_hs(self) -> None:
Expand Down

0 comments on commit 750a804

Please sign in to comment.