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