shairubin / fun_with_ast

let's have fun manipulating ASTs in Python
Apache License 2.0
0 stars 1 forks source link

break fails to match #345

Closed shairubin closed 4 days ago

shairubin commented 4 days ago

if __name__ == "__main__":

    while retry > 0:
        if build_result != "succeeded":
            retry = retry - 1
        else:
            break