diff options
Diffstat (limited to 'mastodon/accounts.py')
-rw-r--r-- | mastodon/accounts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/accounts.py b/mastodon/accounts.py index 3d10088..cd43c57 100644 --- a/mastodon/accounts.py +++ b/mastodon/accounts.py | |||
@@ -392,7 +392,7 @@ class Mastodon(Internals): | |||
392 | Returns a :ref:`relationship dict <relationship dict>` containing the updated relationship to the user. | 392 | Returns a :ref:`relationship dict <relationship dict>` containing the updated relationship to the user. |
393 | """ | 393 | """ |
394 | id = self.__unpack_id(id) | 394 | id = self.__unpack_id(id) |
395 | return self.__api_request('POST', f'/api/v1/accounts/{id}/unmute', params) | 395 | return self.__api_request('POST', f'/api/v1/accounts/{id}/unmute') |
396 | 396 | ||
397 | @api_version("1.1.1", "3.1.0", _DICT_VERSION_ACCOUNT) | 397 | @api_version("1.1.1", "3.1.0", _DICT_VERSION_ACCOUNT) |
398 | def account_update_credentials(self, display_name=None, note=None, | 398 | def account_update_credentials(self, display_name=None, note=None, |