| 320 | } |
| 321 | |
| 322 | void store_python_operator_instance(const std::string& id, nb::object instance) { |
| 323 | std::lock_guard lock(g_python_operator_mutex); |
| 324 | g_python_operator_instances[id] = std::move(instance); |
| 325 | } |
| 326 | |
| 327 | void remove_python_operator_instance(const std::string& id) { |
| 328 | std::lock_guard lock(g_python_operator_mutex); |
no test coverage detected