From e33b0e5b1d8042b5bc51e0ee77fc39aee859be6a Mon Sep 17 00:00:00 2001 From: "florentin.luce" Date: Thu, 29 Feb 2024 16:45:08 +0100 Subject: [PATCH] fix doc --- core/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/node.py b/core/node.py index 503c026..a5e5e5b 100644 --- a/core/node.py +++ b/core/node.py @@ -98,7 +98,7 @@ class Node: """Set the blender scene using the bpy Scene object or its name. Args: - value (str|bpy.types.Scene): scene name or scene object to set th the node. + value (str|bpy.types.Scene): scene name or scene object to set the node. """ if isinstance(value, str): self._scene = bpy.data.scenes[value]