diff options
author | reivilibre <oliverw@matrix.org> | 2022-01-10 15:38:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 15:38:22 +0000 |
commit | ffd227c3822b6e20b9dc203b3eae253adc0cf663 (patch) | |
tree | caca777ad9849d05632f1a504bbcaef072c773db /synapse/handlers | |
parent | Deal with mypy errors w/ type-hinted pynacl 1.5.0 (#11714) (diff) | |
download | synapse-ffd227c3822b6e20b9dc203b3eae253adc0cf663.tar.xz |
Fix docstring on `add_account_data_for_user`. (#11716)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/account_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/account_data.py b/synapse/handlers/account_data.py index 96273e2f81..bad48713bc 100644 --- a/synapse/handlers/account_data.py +++ b/synapse/handlers/account_data.py @@ -77,7 +77,7 @@ class AccountDataHandler: async def add_account_data_for_user( self, user_id: str, account_data_type: str, content: JsonDict ) -> int: - """Add some account_data to a room for a user. + """Add some global account_data for a user. Args: user_id: The user to add a tag for. |