Skip to content

Commit 2ced274

Browse files
author
Balazs Horanyi
committed
remove debug print statement
1 parent 56d074e commit 2ced274

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

stream/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ def _make_request(self, method, relative_url, signature, personal=False, params=
188188
url = self.get_full_url(relative_url)
189189
if method.__name__ in ['post', 'put']:
190190
serialized = serializer.dumps(data)
191-
print(url)
192191
response = method(url, data=serialized, headers=headers,
193192
params=default_params, timeout=self.timeout)
194193
logger.debug('stream api call %s, headers %s data %s',

stream/personalization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Personalization(object):
22
def __init__(self, client, token):
33
"""
4-
Methods to interact with personalized feeds.
4+
Methods to interact with personalized feeds.
55
:param client: the api client
66
:param token: the token
77
"""

0 commit comments

Comments
 (0)