def another_module_method(m): thing = m * 2 thing2 = thing + 32 breakpoint() return thing2
def another_method(q): h = q + 43 m = h / 2 breakpoint() return m
def Main(operation): result = False if operation == 1: m = 3 breakpoint() result = True elif operation == 2: breakpoint() result = False elif operation == 3: b = 'hello' breakpoint() j = 32 breakpoint() result = True elif operation == 4: n = 2 res = another_method(n) result = res return result
def another_method(j): q = j + 5 breakpoint() return q
def Main(a): ret = False j = 12 if a == 1: breakpoint() ret = True elif a == 2: ret = True breakpoint() elif a == 3: breakpoint() breakpoint() ret = True elif a == 4: j = 15 breakpoint() elif a == 5: ret = another_method(6) elif a == 6: ret = another_module_method(3) elif a == 7: block = GetBlock(50424) breakpoint() ret = False return ret