aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon/hashtags.py')
-rw-r--r--mastodon/hashtags.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/mastodon/hashtags.py b/mastodon/hashtags.py
index 89e8cac..f894c11 100644
--- a/mastodon/hashtags.py
+++ b/mastodon/hashtags.py
@@ -47,6 +47,4 @@ class Mastodon(Internals):
47 Deletes one of the logged-in user's featured hashtags. 47 Deletes one of the logged-in user's featured hashtags.
48 """ 48 """
49 id = self.__unpack_id(id) 49 id = self.__unpack_id(id)
50 url = '/api/v1/featured_tags/{0}'.format(str(id)) 50 self.__api_request('DELETE', f'/api/v1/featured_tags/{id}')
51 self.__api_request('DELETE', url)
52 \ No newline at end of file
Powered by cgit v1.2.3 (git 2.41.0)