소스 검색

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

pull/566/merge
Attila Nagy 2 년 전
committed by GitHub
부모
커밋
0ca9385a62
No known key found for this signature in database 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)

불러오는 중...
취소
저장