Loads a TBPlugin instance during the setup phase. Args: context: The TBContext instance. Returns: A plugin instance or None if it could not be loaded. Loaders that return None are skipped. :type context: TBContext :rtype: TBPlugin | No
(self, context)
| 333 | pass |
| 334 | |
| 335 | def load(self, context): |
| 336 | """Loads a TBPlugin instance during the setup phase. |
| 337 | |
| 338 | Args: |
| 339 | context: The TBContext instance. |
| 340 | |
| 341 | Returns: |
| 342 | A plugin instance or None if it could not be loaded. Loaders that return |
| 343 | None are skipped. |
| 344 | |
| 345 | :type context: TBContext |
| 346 | :rtype: TBPlugin | None |
| 347 | """ |
| 348 | return None |
| 349 | |
| 350 | |
| 351 | class BasicLoader(TBLoader): |
no outgoing calls
no test coverage detected