mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
- keep empty lines between statements - add test GitOrigin-RevId: 276000bdce7ffee22ecd2e03d2ec4831dd8f6725
10 lines
163 B
Python
10 lines
163 B
Python
class Foo:
|
|
def bar(self):
|
|
print('hello')
|
|
<selection>
|
|
print('awesome')
|
|
|
|
print('world')
|
|
</selection>
|
|
return self
|