* Fix for #239
* Improve patch
This commit is contained in:
Serafeim Papastefanos 2023-03-20 18:06:00 +02:00 committed by GitHub
parent 69660e31c5
commit f68390953a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,7 +315,7 @@ class ComponentNode(Node):
self.name_var = name_var self.name_var = name_var
self.context_args = context_args or [] self.context_args = context_args or []
self.context_kwargs = context_kwargs or {} self.context_kwargs = context_kwargs or {}
self.fill_nodes: List[FillNode] = [] self.fill_nodes: NodeList[FillNode] = NodeList()
self.isolated_context = isolated_context self.isolated_context = isolated_context
def __repr__(self): def __repr__(self):