Skip to content
Snippets Groups Projects
Unverified Commit ffd227c3 authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

Fix docstring on `add_account_data_for_user`. (#11716)

parent c43dd4d0
No related branches found
No related tags found
No related merge requests found
Fix docstring on `add_account_data_for_user`.
\ No newline at end of file
...@@ -77,7 +77,7 @@ class AccountDataHandler: ...@@ -77,7 +77,7 @@ class AccountDataHandler:
async def add_account_data_for_user( async def add_account_data_for_user(
self, user_id: str, account_data_type: str, content: JsonDict self, user_id: str, account_data_type: str, content: JsonDict
) -> int: ) -> int:
"""Add some account_data to a room for a user. """Add some global account_data for a user.
Args: Args:
user_id: The user to add a tag for. user_id: The user to add a tag for.
......
...@@ -450,7 +450,7 @@ class AccountDataWorkerStore(CacheInvalidationWorkerStore): ...@@ -450,7 +450,7 @@ class AccountDataWorkerStore(CacheInvalidationWorkerStore):
async def add_account_data_for_user( async def add_account_data_for_user(
self, user_id: str, account_data_type: str, content: JsonDict self, user_id: str, account_data_type: str, content: JsonDict
) -> int: ) -> int:
"""Add some account_data to a room for a user. """Add some global account_data for a user.
Args: Args:
user_id: The user to add a tag for. user_id: The user to add a tag for.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment