(self, bot, tasks_raw)
| 10 | |
| 11 | class TreeConfigBuilder(object): |
| 12 | def __init__(self, bot, tasks_raw): |
| 13 | self.bot = bot |
| 14 | self.tasks_raw = tasks_raw |
| 15 | self.plugin_loader = PluginLoader() |
| 16 | |
| 17 | def _get_worker_by_name(self, name): |
| 18 | try: |
nothing calls this directly
no test coverage detected