aboutsummaryrefslogtreecommitdiffstats
path: root/tools/may_execute_py_code.py
blob: 5f6af2ff8dcdcaa0c04d1b93383221c439285762 (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")`
    """
    exec(code)