remove white spaces

This commit is contained in:
Mustafa-Zarkash 2023-09-05 19:54:31 +03:00
parent 45f86749e1
commit ebae3cf03e

View file

@ -654,19 +654,19 @@ def get_color_management_preferences():
def get_obj_node_output(obj_node): def get_obj_node_output(obj_node):
"""Find output node. """Find output node.
If the node has any output node return the If the node has any output node return the
output node with the minimum `outputidx`. output node with the minimum `outputidx`.
When no output is present return the node When no output is present return the node
with the display flag set. If no output node is with the display flag set. If no output node is
detected then None is returned. detected then None is returned.
Arguments: Arguments:
node (hou.Node): The node to retrieve a single node (hou.Node): The node to retrieve a single
the output node for. the output node for.
Returns: Returns:
Optional[hou.Node]: The child output node. Optional[hou.Node]: The child output node.
""" """
outputs = obj_node.subnetOutputs() outputs = obj_node.subnetOutputs()