From d7921e4c62c1f8d9c6ed3dc747854f4f95343a9f Mon Sep 17 00:00:00 2001 From: Martin Pecka Date: Mon, 16 Sep 2024 10:25:55 +0200 Subject: [PATCH] tutorials/06_python_support: Fix tutorial snippet (#539) Signed-off-by: Martin Pecka --- tutorials/06_python_support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/06_python_support.md b/tutorials/06_python_support.md index 50cb712f..74204c2c 100644 --- a/tutorials/06_python_support.md +++ b/tutorials/06_python_support.md @@ -354,7 +354,7 @@ We can declare the topic remapping option using the following code: # Create a transport node and remap a topic. nodeOpts = NodeOptions() - nodeOpts.add_topic_remap("/foo", "/bar") + nodeOpts.add_topic_remap("/example_stringmsg_topic", "/bar") node = Node(nodeOpts) ```