Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-07-03 08:13:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-03 08:13:27 +0300
commit105192e5a288472fd7670a43499e44805f35b252 (patch)
treeb4af23f1d632fc8f962f872b239e90b2aa572940 /release/scripts/modules/bpy_extras/node_utils.py
parent646f8bdb4801b0376b3e4bd01bbac49a51c99940 (diff)
Cleanup: pep8
Diffstat (limited to 'release/scripts/modules/bpy_extras/node_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/node_utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/modules/bpy_extras/node_utils.py b/release/scripts/modules/bpy_extras/node_utils.py
index 9a2be5b9f68..d459b99ddd0 100644
--- a/release/scripts/modules/bpy_extras/node_utils.py
+++ b/release/scripts/modules/bpy_extras/node_utils.py
@@ -21,7 +21,7 @@
__all__ = (
"find_node_input",
"find_output_node",
- )
+)
# XXX Names are not unique. Returns the first match.
@@ -34,6 +34,8 @@ def find_node_input(node, name):
# Return the output node to display in the UI. In case multiple node types are
# specified, node types earlier in the list get priority.
+
+
def find_output_node(ntree, nodetypes):
if ntree:
output_node = None