瀏覽代碼

Fix: NaN data error. (#6192)

### What problem does this PR solve?

#6065

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.18.0
Kevin Hu 7 月之前
父節點
當前提交
1b130546f8
No account linked to committer's email address
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      agent/canvas.py

+ 1
- 1
agent/canvas.py 查看文件

pid = self.components[cid]["parent_id"] pid = self.components[cid]["parent_id"]
o, _ = self.components[cid]["obj"].output(allow_partial=False) o, _ = self.components[cid]["obj"].output(allow_partial=False)
oo, _ = self.components[pid]["obj"].output(allow_partial=False) oo, _ = self.components[pid]["obj"].output(allow_partial=False)
self.components[pid]["obj"].set(pd.concat([oo, o], ignore_index=True).dropna())
self.components[pid]["obj"].set_output(pd.concat([oo, o], ignore_index=True).dropna())
downstream = [pid] downstream = [pid]


for m in prepare2run(downstream): for m in prepare2run(downstream):

Loading…
取消
儲存