diff --git a/trello/card.py b/trello/card.py index a19ba719..18d4cc96 100644 --- a/trello/card.py +++ b/trello/card.py @@ -274,6 +274,7 @@ def fetch_actions(self, action_filter='createCard', since=None, before=None): "since": since, "before": before}) self.actions = json_obj + return self.actions def attriExp(self, multiple): """ diff --git a/trello/trellolist.py b/trello/trellolist.py index 124c90ba..c7d6b0ba 100644 --- a/trello/trellolist.py +++ b/trello/trellolist.py @@ -126,6 +126,7 @@ def fetch_actions(self, action_filter): '/lists/' + self.id + '/actions', query_params={'filter': action_filter}) self.actions = json_obj + return self.actions def _set_remote_attribute(self, attribute, value): self.client.fetch_json(