| 473 | */ |
| 474 | template <typename... Args> |
| 475 | auto FromPythonTrampoline(const char *python_module, const char *attr_name, Args... attr_names) { |
| 476 | return ExtractPythonAttr(py::module::import(python_module).attr(attr_name), attr_names...); |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * @brief Extracts attribute from imported python module. |
no test coverage detected