mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
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.
13 lines
174 B
Python
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
|
|
|