(self, plugin)
| 328 | return ps |
| 329 | |
| 330 | async def _load_sources(self, plugin): |
| 331 | for filename in glob.iglob('%s/sources/*.yml' % plugin.data_dir, recursive=False): |
| 332 | await self.load_yaml_file(Source, filename, plugin.access) |
| 333 | |
| 334 | async def _load_objectives(self, plugin): |
| 335 | for filename in glob.iglob('%s/objectives/*.yml' % plugin.data_dir, recursive=False): |