浏览代码

Fix: none item while concating df. (#6176)

### 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 个月前
父节点
当前提交
d0eda83697
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      agent/canvas.py

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

@@ -235,7 +235,7 @@ class Canvas:
pid = self.components[cid]["parent_id"]
o, _ = self.components[cid]["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))
self.components[pid]["obj"].set(pd.concat([oo, o], ignore_index=True).dropna())
downstream = [pid]

for m in prepare2run(downstream):

正在加载...
取消
保存