diff --git a/trello/__init__.py b/trello/__init__.py index 4b717c1b..0cfdf581 100644 --- a/trello/__init__.py +++ b/trello/__init__.py @@ -585,11 +585,11 @@ def fetch_comments(self): def fetch_checklists(self): checklists = [] - if self.badges['checkItems'] > 0: - json_obj = self.client.fetch_json( - '/cards/' + self.id + '/checklists', ) - for cl in json_obj: - checklists.append(Checklist(self.client, self.checked, cl, trello_card=self.id)) + json_obj = self.client.fetch_json( + '/cards/' + self.id + '/checklists', ) + for cl in json_obj: + checklists.append(Checklist(self.client, self.checked, cl, + trello_card=self.id)) return checklists def fetch_actions(self, action_filter='createCard'):