nodebpy 0.3.0__py3-none-any.whl → 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,9 @@ from ..types import (
16
16
 
17
17
 
18
18
  class GetListItem(NodeBuilder):
19
- """Retrieve a value from a list"""
19
+ """
20
+ Retrieve a value from a list
21
+ """
20
22
 
21
23
  _bl_idname = "GeometryNodeListGetItem"
22
24
  node: bpy.types.GeometryNodeListGetItem
@@ -125,7 +127,9 @@ class GetListItem(NodeBuilder):
125
127
 
126
128
 
127
129
  class List(NodeBuilder):
128
- """Create a list of values"""
130
+ """
131
+ Create a list of values
132
+ """
129
133
 
130
134
  _bl_idname = "GeometryNodeList"
131
135
  node: bpy.types.GeometryNodeList
@@ -226,7 +230,9 @@ class List(NodeBuilder):
226
230
 
227
231
 
228
232
  class ListLength(NodeBuilder):
229
- """Count how many items are in a given list"""
233
+ """
234
+ Count how many items are in a given list
235
+ """
230
236
 
231
237
  _bl_idname = "GeometryNodeListLength"
232
238
  node: bpy.types.GeometryNodeListLength