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