(self, filename, access)
| 250 | await self.load_yaml_file(Source, filename, access) |
| 251 | |
| 252 | async def load_objective_file(self, filename, access): |
| 253 | warnings.warn(DEPRECATION_WARNING_LOAD, DeprecationWarning, stacklevel=2) |
| 254 | await self.load_yaml_file(Objective, filename, access) |
| 255 | |
| 256 | async def load_yaml_file(self, object_class, filename, access): |
| 257 | for src in self.strip_yml(filename): |
nothing calls this directly
no test coverage detected