Files
openide/python/testData/refactoring/pullup/properties/Class.after.py
Mikhail Golubev 32b76de893 PY-11552 Keep maximum 1 empty line between declarations and in code by default
Fix affected test data where reformat is invoked during refactoring.
Also use entire sample provided by user in the corresponding test case
for the issue.
2015-04-27 20:34:47 +03:00

13 lines
174 B
Python

from SuperClass import SuperClass
class AnyClass(SuperClass):
C = 1
def __init__(self):
super(AnyClass, self).__init__()
def foo(self):
pass