mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
10 lines
208 B
Python
10 lines
208 B
Python
__author__ = 'ktisha'
|
|
class Base(object):
|
|
def __init__(self):
|
|
self.my = 1
|
|
|
|
|
|
class Child(Base): # <- Child class here should not be highlighted since
|
|
# it has init mehtod of Base class.
|
|
pass
|