ソースを参照

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)

読み込み中…
キャンセル
保存