mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-02 02:26:07 -04:00
Use inline type hints in various other places (in synapse/
) (#10380)
This commit is contained in:
parent
c7603af1d0
commit
bf72d10dbf
79 changed files with 329 additions and 336 deletions
|
@ -34,7 +34,7 @@ class ConsentServerNotices:
|
|||
self._server_notices_manager = hs.get_server_notices_manager()
|
||||
self._store = hs.get_datastore()
|
||||
|
||||
self._users_in_progress = set() # type: Set[str]
|
||||
self._users_in_progress: Set[str] = set()
|
||||
|
||||
self._current_consent_version = hs.config.user_consent_version
|
||||
self._server_notice_content = hs.config.user_consent_server_notice_content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue