aboutsummaryrefslogtreecommitdiffstats
path: root/tools/execute_py_code.py
blob: 3c6beb41e5d65bcc8c7f36caa3eb7318d685e1e2 (plain) (blame)
1
2
3
4
5
6
def run(code: str):
    """Execute the python code.
    Args:
        code: Python code to execute, such as `print("hello world")`
    """
    return eval(code)