Returns the list of argument groups this tools wishes to subscribe to. Returns: List[BaseArgs]: The list of argument groups to subscribe to.
(self)
| 97 | return [] |
| 98 | |
| 99 | def get_subscriptions(self): |
| 100 | """ |
| 101 | Returns the list of argument groups this tools wishes to subscribe to. |
| 102 | |
| 103 | Returns: |
| 104 | List[BaseArgs]: The list of argument groups to subscribe to. |
| 105 | """ |
| 106 | return self.get_subscriptions_impl() |
| 107 | |
| 108 | # Implementation for `get_subtools`. This should be implemented by child classes instead of `get_subtools` |
| 109 | def get_subtools_impl(self): |
no test coverage detected