From b2af803a8354cadcc646fe6507fb744d828ff693 Mon Sep 17 00:00:00 2001 From: Manuel Lamelas Date: Tue, 19 Jun 2018 16:26:03 +0200 Subject: [PATCH] Deleted uncomfortable print This line print the parameters when you call UsersLookup. It shouldn't be there --- twitter/api.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/twitter/api.py b/twitter/api.py index b287fb03..94bbbbc1 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -2823,8 +2823,6 @@ def UsersLookup(self, if len(uids) > 100: raise TwitterError("No more than 100 users may be requested per request.") - print(parameters) - resp = self._RequestUrl(url, 'GET', data=parameters) data = self._ParseAndCheckTwitter(resp.content.decode('utf-8'))