From 14589563bb4e13e5a247cd766cec944da0ff0365 Mon Sep 17 00:00:00 2001 From: "@brrzap" Date: Tue, 9 May 2017 01:43:48 -0400 Subject: [PATCH] fix doc on follow_request_{authorize,reject} --- mastodon/Mastodon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 3b00f37..b0ec2bb 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -670,7 +670,7 @@ class Mastodon: """ Accept an incoming follow request. - Returns a user dict of the authorized account. + Returns an empty dict. """ return self.__api_request('POST', '/api/v1/follow_requests/' + str(id) + "/authorize") @@ -678,7 +678,7 @@ class Mastodon: """ Reject an incoming follow request. - Returns a user dict of the rejected account. + Returns an empty dict. """ return self.__api_request('POST', '/api/v1/follow_requests/' + str(id) + "/reject")