This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix: Handle error in Python `dataflow_descriptor` function
tags/v0.3.12-rc0
Philipp Oppermann
7 months ago
parent
01168ddb02
commit
a19ab2d4c9
Failed to extract signature
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
apis/python/node/src/lib.rs
+ 1
- 1
apis/python/node/src/lib.rs
View File
@@ -230,7 +230,7 @@ impl Node {
/// :rtype: dict
pub fn dataflow_descriptor(&mut self, py: Python) -> eyre::Result<PyObject> {
Ok(
pythonize::pythonize(py, &self.node.get_mut().dataflow_descriptor())
pythonize::pythonize(py, &self.node.get_mut().dataflow_descriptor()
?
)
.map(|x| x.unbind())?,
)
}
Write
Preview
Loading…
Cancel
Save