From: Harmon Date: Wed, 24 Feb 2021 03:44:50 +0000 (-0600) Subject: Improve formatting in Client.unfollow X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=36cc70291d67b874f35a8fcef324358d490d2dae;p=tweepy.git Improve formatting in Client.unfollow --- diff --git a/tweepy/client.py b/tweepy/client.py index 05f4507..c311813 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -309,9 +309,7 @@ class Client: source_user_id = self.access_token.partition('-')[0] route = f"/2/users/{source_user_id}/following/{target_user_id}" - return self._make_request( - "DELETE", route, user_auth=True - ) + return self._make_request("DELETE", route, user_auth=True) def unhide_reply(self, tweet_id): """