Returns a list of `Task`s that meet the conditions specified `kwargs`, starting from the root by default. Notes: Keyword args are passed directly to `get_tasks_iterator` Returns: list(`Task`): the tasks that match the filtering conditions
(self, first_task=None, **kwargs)
| 95 | return False |
| 96 | |
| 97 | def get_tasks(self, first_task=None, **kwargs): |
| 98 | """Returns a list of `Task`s that meet the conditions specified `kwargs`, starting from the root by default. |
| 99 | |
| 100 | Notes: |
| 101 | Keyword args are passed directly to `get_tasks_iterator` |
| 102 | |
| 103 | Returns: |
| 104 | list(`Task`): the tasks that match the filtering conditions |
| 105 | """ |
| 106 | return [t for t in self.get_tasks_iterator(first_task, **kwargs)] |
| 107 | |
| 108 | def get_next_task(self, first_task=None, **kwargs): |
| 109 | """Returns the next task that meets the iteration conditions, starting from the root by default. |