-
Notifications
You must be signed in to change notification settings - Fork 129
[QUAD] Enhancement: Add action in the Workfile Template Builder #6324
base: develop
Are you sure you want to change the base?
[QUAD] Enhancement: Add action in the Workfile Template Builder #6324
Conversation
@@ -1037,15 +1037,16 @@ def collect_plugin_paths(self): | |||
|
|||
Returns: | |||
dict: Output is dictionary with keys "publish", "create", "load", | |||
"actions" and "inventory" each containing list of paths. | |||
"actions", "inventory", "builder" each containing a list of paths. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line too long (82 > 79 characters)
@@ -0,0 +1,67 @@ | |||
import os |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'os' imported but unused
return get_representation_path(representation, root) | ||
|
||
|
||
def get_representation_path(representation, root=None, dbcon=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'get_representation_path' is too complex (31)
|
||
self.update_builder_action(family_widget, builder_widget) | ||
family_widget._input_widget.currentIndexChanged.connect( | ||
lambda index, family=family_widget, builder=builder_widget: self.update_builder_action(family, builder) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line too long (115 > 79 characters)
def update_builder_action(family_widget, builder_widget): | ||
"""Update builder action widget by family widget value""" | ||
builder_widget._input_widget.clear() | ||
actions_by_family = get_actions_by_family(family_widget.current_value()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line too long (80 > 79 characters)
No description provided.