(self, filename, access)
| 246 | await self.load_yaml_file(Adversary, filename, access) |
| 247 | |
| 248 | async def load_source_file(self, filename, access): |
| 249 | warnings.warn(DEPRECATION_WARNING_LOAD, DeprecationWarning, stacklevel=2) |
| 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) |
nothing calls this directly
no test coverage detected