Cleanup: prefer tuples over lists

This commit is contained in:
Campbell Barton
2017-08-02 07:53:58 +10:00
parent c42c129393
commit 4afc94080c
3 changed files with 8 additions and 8 deletions

View File

@@ -270,7 +270,7 @@ class EEVEE_WORLD_PT_surface(WorldButtonsPanel, Panel):
if world.use_nodes:
ntree = world.node_tree
node = find_output_node(ntree, ['OUTPUT_WORLD'])
node = find_output_node(ntree, ('OUTPUT_WORLD',))
if node:
input = find_node_input(node, 'Surface')