mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
python/codeInsight/intentions/PyJoinIfIntention.java: notice outer 'else'.
8 lines
155 B
Python
8 lines
155 B
Python
def foo():
|
|
if <caret>a + 2 > 3:
|
|
if b < 4:
|
|
a = a and b
|
|
b = 4
|
|
else: # this prevents ifs from joining
|
|
print a
|