aboutsummaryrefslogtreecommitdiffstats
path: root/tools/execute_py_code.py
blob: a774e8237b657a9095694a3dbf6bac24e8af32db (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 exec(code)