From f9c2eab0df84372a984d3444ce4109d13a6e54d8 Mon Sep 17 00:00:00 2001 From: Marek Marecki Date: Sun, 9 Jun 2013 22:30:55 +0200 Subject: [PATCH] Removed that annoying print() from `models.Notification()` --- diaspy/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/diaspy/models.py b/diaspy/models.py index 7961479..9f68f1c 100644 --- a/diaspy/models.py +++ b/diaspy/models.py @@ -74,7 +74,6 @@ class Notification(): """ headers = {'x-csrf-token': self._connection.get_token()} params = {'set_unread': json.dumps(unread)} - print(json.dumps(False)) self._connection.put('notifications/{0}'.format(self['id']), params=params, headers=headers) self.data['unread'] = unread -- 2.25.1