diff --git a/trello/card.py b/trello/card.py index 60e61f06..0eea7bc0 100644 --- a/trello/card.py +++ b/trello/card.py @@ -198,6 +198,10 @@ def get_comments(self): return self.fetch_comments(force=True) def fetch_checklists(self): + + if not hasattr(self, "checked") or self.checked is None: + self.fetch(eager=False) + checklists = [] json_obj = self.client.fetch_json( '/cards/' + self.id + '/checklists', )