mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
Since it finally works as expected now, I also updated test data files to include this extra line feed required by PEP8.
8 lines
72 B
Python
8 lines
72 B
Python
def foo(a):
|
|
if a == 5:
|
|
# a is 5
|
|
print 'no'
|
|
|
|
|
|
foo(5)
|