its-rigs / Trolly

A Python wrapper around the Trello API. Provides a group of Python classes to represent Trello Objects. All classes come with basic Trello API method calls and are easily extensible to suit your needs. See the README for more details.
MIT License
100 stars 29 forks source link

List.get_cards() doesn't accept query_params #45

Closed henry131 closed 10 months ago

henry131 commented 6 years ago

If you want to get the cards on a list together with their actions, for example to view comments, you cannot.

To resolve this you simply need to amend the def get_cards(self): method declaration in trolly.List to accept query_params: def get_cards(self, **query_params):