Load all bundle handlers from the given bundle plugin ids. :param bundle_ids: a list of bundle ids. :return: None
(bundle_ids: List[str])
| 47 | |
| 48 | # Automatically search and import all providers |
| 49 | def load_all_bundle_handlers(bundle_ids: List[str]): |
| 50 | |
| 51 | """ |
| 52 | Load all bundle handlers from the given bundle plugin ids. |
| 53 | :param bundle_ids: a list of bundle ids. |
| 54 | :return: None |
| 55 | """ |
| 56 | |
| 57 | for bundle_id in bundle_ids: |
| 58 | get_bundle_handler(bundle_id) |
| 59 |
no test coverage detected