diff --git a/src/sessionmanager/session.py b/src/sessionmanager/session.py index aac9507f..e9498327 100644 --- a/src/sessionmanager/session.py +++ b/src/sessionmanager/session.py @@ -254,7 +254,8 @@ class Session(object): """ Gets muted users (oh really?).""" # self.db["muted_users"] = self.twitter.twitter.get_muted_users_ids()["ids"] - pass + #This really needs to be fixed (#30). Return an empty list as a hacky workaround, remove this comment and the line below when fixed. + self.db["muted_users"] = [] @_require_login def get_stream(self, name, function, *args, **kwargs):