mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix unreachable code - string wasn't actually joined
This commit is contained in:
parent
065c11526e
commit
81bdf3df3d
1 changed files with 5 additions and 3 deletions
|
|
@ -40,9 +40,11 @@ class _NodeTypeAttrib(object):
|
|||
return "{}.{}".format(node, self.colour_space)
|
||||
|
||||
def __str__(self):
|
||||
return "_NodeTypeAttrib(name={}, fname={}, "
|
||||
"computed_fname={}, colour_space={})".format(
|
||||
self.name, self.fname, self.computed_fname, self.colour_space)
|
||||
return (
|
||||
"_NodeTypeAttrib(name={}, fname={}, "
|
||||
"computed_fname={}, colour_space={})".format(
|
||||
self.name, self.fname, self.computed_fname, self.colour_space)
|
||||
)
|
||||
|
||||
|
||||
NODETYPES = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue