From 33680aa0ee0eec9065cf32e9f28364020c02f2d7 Mon Sep 17 00:00:00 2001 From: Joseph Perez Date: Fri, 11 Oct 2024 11:23:32 +0200 Subject: [PATCH] Update content/docs/migration_1.0/Python.md Co-authored-by: oteffahi <70609372+oteffahi@users.noreply.github.com> --- content/docs/migration_1.0/Python.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/docs/migration_1.0/Python.md b/content/docs/migration_1.0/Python.md index f62deddd..1fb331a4 100644 --- a/content/docs/migration_1.0/Python.md +++ b/content/docs/migration_1.0/Python.md @@ -37,7 +37,8 @@ with zenoh.open(zenoh.Config()) as session: # no need to declare a variable session.declare_subscriber("my/keyepxr", lambda s: print(s), background=True) sleep(10) # subscriber stays in background and its callback can be called - # `session.close()` will be called at the end of the block, and it will undeclare the subscriber + # `session.close()` will be called at the end of the block, + # and it will undeclare the subscriber ``` ## Value is gone, long live ZBytes