Given a modular path to a function, import that module and return the function.
(whole_function)
| 279 | |
| 280 | @staticmethod |
| 281 | def import_module_and_get_function(whole_function): |
| 282 | """ |
| 283 | Given a modular path to a function, import that module |
| 284 | and return the function. |
| 285 | """ |
| 286 | return import_and_get_function(whole_function) |
| 287 | |
| 288 | @classmethod |
| 289 | def lambda_handler(cls, event, context): # pragma: no cover |
no test coverage detected