Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
All these changes should mostly deal with style/documentation and not affect any functionality. There are three which have the potential to (if I missed a reference in one place or the other), so might need extra care during review, which are:
react
in the saved workflow toui-graph
. Addresses code review feedback in case the front-end changes to a non-React framework.to_session_dict
method to ato_json
method. Both return dict-like objects so this should keep existing functionality. It adds thenode_dir
attribute which had been missing.Additional minor changes, are all clean-up/style:
flow_vars
for Node options instead of the old**self.options
approach.workflow.py
lists a lot of changes, but this is all re-ordering the existing methods to make the layout cleaner. I.e., "node" methods are grouped together, "getters/setters", etc. Now not just a hodgepodge of methods that can be hard to locate easily.