fix doc on follow_request_{authorize,reject}

This commit is contained in:
@brrzap 2017-05-09 01:43:48 -04:00
pare 893ff2e134
commit 14589563bb

Veure arxiu

@ -670,7 +670,7 @@ class Mastodon:
""" """
Accept an incoming follow request. 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") return self.__api_request('POST', '/api/v1/follow_requests/' + str(id) + "/authorize")
@ -678,7 +678,7 @@ class Mastodon:
""" """
Reject an incoming follow request. 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") return self.__api_request('POST', '/api/v1/follow_requests/' + str(id) + "/reject")