mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
10 lines
233 B
Python
10 lines
233 B
Python
def main(indices):
|
|
foo = True
|
|
for i in indices:
|
|
<selection>need_break = False
|
|
if i > 2:
|
|
foo = False
|
|
need_break = True</selection>
|
|
if need_break:
|
|
break
|
|
return foo |