Skip to content

Commit

Permalink
lambda for extension components (#1563)
Browse files Browse the repository at this point in the history
resolves #1517

Co-authored-by: Fred Lefévère-Laoide <Fred.Lefevere-Laoide@Taipy.io>
  • Loading branch information
FredLL-Avaiga and Fred Lefévère-Laoide authored Jul 22, 2024
1 parent 04b0693 commit 7fdbb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taipy/gui/builder/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class _LambdaByName(ast.NodeVisitor):

def __init__(self, element_name: str, lineno: int, lambdas: t.Dict[str, ast.Lambda]) -> None:
super().__init__()
self.element_name = element_name
self.element_name = element_name.split(".")[-1]
self.lambdas = lambdas
self.lineno = lineno + 1

Expand Down

0 comments on commit 7fdbb19

Please sign in to comment.