Get a bundles by bundle_id. :param bundle_id: the bundles id. :return: the bundles or None if not found.
(bundle_id: str)
| 116 | |
| 117 | |
| 118 | def get_bundle(bundle_id: str) -> Optional[Bundle]: |
| 119 | """ |
| 120 | Get a bundles by bundle_id. |
| 121 | |
| 122 | :param bundle_id: the bundles id. |
| 123 | :return: the bundles or None if not found. |
| 124 | """ |
| 125 | return __bundle_dict.get(bundle_id) |
| 126 | |
| 127 | |
| 128 | def get_bundle_cache() -> List[Dict]: |
no test coverage detected