瀏覽代碼

feat: allow Node arguments to be passed to Custom Node (#437)

pull/566/merge
Attila Nagy 2 年之前
committed by GitHub
父節點
當前提交
0ca9385a62
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      diagrams/custom/__init__.py

+ 2
- 2
diagrams/custom/__init__.py 查看文件

@@ -15,6 +15,6 @@ class Custom(Node):
def _load_icon(self):
return self._icon

def __init__(self, label, icon_path):
def __init__(self, label, icon_path, *args, **kwargs):
self._icon = icon_path
super().__init__(label)
super().__init__(label, *args, **kwargs)

Loading…
取消
儲存