Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apis/python/node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ impl Node {
)
}

/// Returns the node configuration.
pub fn node_config(&mut self, py: Python) -> eyre::Result<PyObject> {
Ok(pythonize::pythonize(py, &self.node.get_mut().node_config()).map(|x| x.unbind())?)
}

/// Returns the dataflow id.
///
/// :rtype: str
Expand Down
Loading