Skip to content

Commit 7927e67

Browse files
committed
Fix onHalted override copy-paste error.
1 parent 712370b commit 7927e67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_bindings.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Py_StatefulActionNode final : public StatefulActionNode
5151

5252
void onHalted() override
5353
{
54-
PYBIND11_OVERRIDE_PURE_NAME(void, Py_StatefulActionNode, "on_running", onRunning);
54+
PYBIND11_OVERRIDE_PURE_NAME(void, Py_StatefulActionNode, "on_halted", onHalted);
5555
}
5656
};
5757

0 commit comments

Comments
 (0)