From dde4c39600050164429b5d05fe986df3d7d593fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= <6774676+eumiro@users.noreply.github.com> Date: Fri, 2 Dec 2022 23:48:39 +0100 Subject: refactor: use f-strings without bug --- mastodon/accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mastodon/accounts.py') 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): Returns a :ref:`relationship dict ` containing the updated relationship to the user. """ id = self.__unpack_id(id) - return self.__api_request('POST', f'/api/v1/accounts/{id}/unmute', params) + return self.__api_request('POST', f'/api/v1/accounts/{id}/unmute') @api_version("1.1.1", "3.1.0", _DICT_VERSION_ACCOUNT) def account_update_credentials(self, display_name=None, note=None, -- cgit v1.2.3