SIGN IN SIGN UP

🐛 fix(utilities.py): use ast.literal_eval instead of eval to improve security

🐛 fix(GenericNode): add semicolon to console.log statement
The use of eval in the code can be a security risk as it can execute arbitrary code. Using ast.literal_eval instead of eval is a safer alternative as it only evaluates a subset of Python expressions. The semicolon was added to the console.log statement to improve code consistency.
G
Gabriel Almeida committed
c4159f3af40322a144c1dff0d13a925538f9e371
Parent: e2345db