Selaa lähdekoodia

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

pull/566/merge
Attila Nagy 2 vuotta sitten
committed by GitHub
vanhempi
commit
0ca9385a62
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      diagrams/custom/__init__.py

+ 2
- 2
diagrams/custom/__init__.py Näytä tiedosto

@@ -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)

Ladataan…
Peruuta
Tallenna